forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 4
399 lines (329 loc) · 11.6 KB
/
pull-request-validation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
name: Pull request validation
on:
pull_request:
branches:
- main
paths-ignore:
- .github
- .vscode
push:
branches:
- feat-github-workflow
workflow_dispatch: {}
defaults:
run:
shell: bash
env:
CI_PULL_REQUEST: 1 # Skip nightly tests
NODE_ENV: test # Add instrumentation code
node-version: 20.x
skip-secure-feed: true # TODO: Turn this off.
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: npm
- if: "env.skip-secure-feed != 'true'"
name: Enable secure feed
run: npx https://aka.ms/EnableSecureFeed
- run: npm clean-install
- run: npm run bootstrap
- run: npm run build --if-present
- name: Pack Docker artifact
run: |
zip docker.zip -r@ <<EOF
./__tests__/
./babel-jest-config.js
./babel-passthru-transformer.js
./babel.config.json
./docker-compose-wsl2.yml
./jest.config.js
./package.json
./package-lock.json
./packages/bundle/dist/
./packages/test/harness/
./packages/test/page-object/dist/
./serve-test.json
./testharness.dockerfile
./testharness2.dockerfile
EOF
- run: ls -l docker.zip
- name: Upload Docker artifact
uses: actions/upload-artifact@v3
with:
name: docker
path: docker.zip
retention-days: 1
static-code-analysis:
name: Static code analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: npm
- if: "env.skip-secure-feed != 'true'"
name: Enable secure feed
run: npx https://aka.ms/EnableSecureFeed
- run: npm clean-install
- run: npm run bootstrap
- run: npm run build --if-present
- run: npm run precommit --if-present
unit-test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: npm
- if: "env.skip-secure-feed != 'true'"
name: Enable secure feed
run: npx https://aka.ms/EnableSecureFeed
- run: npm clean-install
- run: npm run bootstrap
- run: npm run build --if-present
- name: Run jest --testPathPattern packages/
run: |
./node_modules/.bin/jest \
--ci \
--coverage true \
--forceExit \
--logHeapUsage \
--runInBand \
--testPathPattern packages/
timeout-minutes: 10
- if: always()
name: Append ID to test result
run: |
ls -laR .
mv cobertura-coverage.xml cobertura-coverage-unit.xml
mv jest.json jest-unit.json
mv lcov.info lcov-unit.info
mv nunit3.xml nunit3-unit.xml
mv result.trx result-unit.trx
working-directory: ./coverage
- if: always()
name: Upload test results
uses: actions/upload-artifact@v3
with:
name: sharded-test-result
path: |
./coverage/cobertura-coverage-*.xml
./coverage/jest-*.json
./coverage/lcov-*.info
./coverage/nunit3-*.xml
./coverage/result-*.trx
html-test:
name: HTML test (${{ format('{0}/{1}', matrix.shard-index, matrix.shard-count) }})
needs:
- build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shard-index: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
shard-count: [20]
steps:
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
- if: "env.skip-secure-feed != 'true'"
name: Enable secure feed
run: npx https://aka.ms/EnableSecureFeed
- name: Download Docker artifact
uses: actions/download-artifact@v3
with:
name: docker
- run: unzip docker.zip
- run: rm docker.zip
- run: npm clean-install
- name: Run docker-compose build
run: docker-compose -f docker-compose-wsl2.yml build --build-arg REGISTRY=mcr.microsoft.com/mirror/docker/library
- name: Run docker-compose up
run: docker-compose -f docker-compose-wsl2.yml up --detach --scale chrome=2
- name: Ping Web Driver hub
run: |
set +eo pipefail
while true
do
curl http://localhost:4444/wd/hub/status > /tmp/wd-status.json
[[ $? -eq 0 ]] && cat /tmp/wd-status.json | jq -r 'if (.value.ready != true) then halt_error(1) else empty end'
[[ $? -eq 0 ]] && break
sleep 1
done
- name: Run jest --shard=${{ format('{0}/{1}', matrix.shard-index, matrix.shard-count) }}
run: |
./node_modules/.bin/jest \
--ci \
--coverage true \
--forceExit \
--logHeapUsage \
--runInBand \
--shard=${{ format('{0}/{1}', matrix.shard-index, matrix.shard-count) }}
timeout-minutes: 10
- if: always()
name: Print Docker logs
run: docker-compose -f docker-compose-wsl2.yml logs
- if: always()
name: Append ID to test result
run: |
ls -laR .
mv cobertura-coverage.xml cobertura-coverage-${{ matrix.shard-index }}.xml
mv jest.json jest-${{ matrix.shard-index }}.json
mv lcov.info lcov-${{ matrix.shard-index }}.info
mv nunit3.xml nunit3-${{ matrix.shard-index }}.xml
mv result.trx result-${{ matrix.shard-index }}.trx
working-directory: ./coverage
- if: always()
name: Upload test results
uses: actions/upload-artifact@v3
with:
name: sharded-test-result
path: |
./coverage/cobertura-coverage-*.xml
./coverage/jest-*.json
./coverage/lcov-*.info
./coverage/nunit3-*.xml
./coverage/result-*.trx
merge-test-result:
if: always()
name: Merge test result
needs:
- html-test
- unit-test
runs-on: ubuntu-latest
steps:
- name: Download test results
uses: actions/download-artifact@v3
with:
name: sharded-test-result
- run: ls -laR
# - name: Use Node.js ${{ env.node-version }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ env.node-version }}
# - if: "env.skip-secure-feed != 'true'"
# name: Enable secure feed
# run: npx https://aka.ms/EnableSecureFeed
# TODO: Gcovr doesn't know how to load XML.
# - name: Install Gcovr
# run: pip install gcovr
# - name: Merge cobertura-coverage-*.xml
# run: |
# gcovr \
# -a cobertura-coverage-1.xml \
# -a cobertura-coverage-2.xml \
# -a cobertura-coverage-3.xml \
# -a cobertura-coverage-4.xml \
# -a cobertura-coverage-5.xml \
# -a cobertura-coverage-6.xml \
# -a cobertura-coverage-7.xml \
# -a cobertura-coverage-8.xml \
# -a cobertura-coverage-9.xml \
# -a cobertura-coverage-10.xml \
# -a cobertura-coverage-11.xml \
# -a cobertura-coverage-12.xml \
# -a cobertura-coverage-13.xml \
# -a cobertura-coverage-14.xml \
# -a cobertura-coverage-15.xml \
# -a cobertura-coverage-16.xml \
# -a cobertura-coverage-17.xml \
# -a cobertura-coverage-18.xml \
# -a cobertura-coverage-19.xml \
# -a cobertura-coverage-20.xml \
# -a cobertura-coverage-unit.xml \
# --xml cobertura-coverage.xml
# - if: always()
# name: Print Cobertura line coverage
# run: gcovr cobertura-coverage.xml --txt
# - if: always()
# name: Print Cobertura branch coverage
# run: gcovr cobertura-coverage.xml --branches --txt
# - name: Report coverage to pull request
# uses: zgosalvez/github-actions-report-lcov@77c3fa1e20d891bc83ec63b6b0e5ecf5ee1ced1e # 4.1.1
# with:
# coverage-files: lcov-*.info
# github-token: ${{ secrets.GITHUB_TOKEN }}
# update-comment: true
- name: Install lcov
run: sudo apt install -y lcov
- name: Merge lcov-*.info
run: |
lcov \
--rc lcov_branch_coverage=1 \
--add-tracefile lcov-1.info \
--add-tracefile lcov-2.info \
--add-tracefile lcov-3.info \
--add-tracefile lcov-4.info \
--add-tracefile lcov-5.info \
--add-tracefile lcov-6.info \
--add-tracefile lcov-7.info \
--add-tracefile lcov-8.info \
--add-tracefile lcov-9.info \
--add-tracefile lcov-10.info \
--add-tracefile lcov-11.info \
--add-tracefile lcov-12.info \
--add-tracefile lcov-13.info \
--add-tracefile lcov-14.info \
--add-tracefile lcov-15.info \
--add-tracefile lcov-16.info \
--add-tracefile lcov-17.info \
--add-tracefile lcov-18.info \
--add-tracefile lcov-19.info \
--add-tracefile lcov-20.info \
--add-tracefile lcov-unit.info \
--output-file lcov.info
- if: always()
name: Print coverage list
run: lcov --rc lcov_branch_coverage=1 --list lcov.info
- if: always()
name: Print coverage summary
run: |
echo \`\`\` >> $GITHUB_STEP_SUMMARY
lcov --rc lcov_branch_coverage=1 --summary lcov.info | tee --append $GITHUB_STEP_SUMMARY
echo \`\`\` >> $GITHUB_STEP_SUMMARY
- if: always()
name: Upload merged test results
uses: actions/upload-artifact@v3
with:
name: merged-test-result
path: |
cobertura-coverage.xml
lcov.info
# run: reportgenerator "-reports:cobertura-coverage-*.xml" "-targetdir:./merged/" -reporttypes:Cobertura
# run:
# npx cobertura-coverage \
# -o cobertura-coverage.xml \
# unit=cobertura-coverage-unit.xml \
# shard1=cobertura-coverage-1.xml \
# shard2=cobertura-coverage-2.xml \
# shard3=cobertura-coverage-3.xml \
# shard4=cobertura-coverage-4.xml \
# shard5=cobertura-coverage-5.xml \
# shard6=cobertura-coverage-6.xml \
# shard7=cobertura-coverage-7.xml \
# shard8=cobertura-coverage-8.xml \
# shard9=cobertura-coverage-9.xml \
# shard10=cobertura-coverage-10.xml \
# shard11=cobertura-coverage-11.xml \
# shard12=cobertura-coverage-12.xml \
# shard13=cobertura-coverage-13.xml \
# shard14=cobertura-coverage-14.xml \
# shard15=cobertura-coverage-15.xml \
# shard16=cobertura-coverage-16.xml \
# shard17=cobertura-coverage-17.xml \
# shard18=cobertura-coverage-18.xml \
# shard19=cobertura-coverage-19.xml \
# shard20=cobertura-coverage-20.xml