-
-
Notifications
You must be signed in to change notification settings - Fork 2
445 lines (411 loc) · 15.4 KB
/
build-test-demos.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
name: Build and test the demo apps
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * 0' # Once a week: "At 00:00 on Sunday."
defaults:
run:
shell: pwsh
env:
REPO_ARTIFACT_NAME : repo
jobs:
checkout-repo:
name: Checkout repo
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- name: Upload repo
uses: actions/upload-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
path: ${{ github.workspace }}
accessibility-axe:
name: accessibility-axe demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/accessibility-axe/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-accessibility-axe
- name: accessibility-axe demo
run: |
cd "${{ github.workspace }}/demos/accessibility-axe"
npm ci
npx playwright install --with-deps
npm test | Tee-Object -Variable testOutput
# Check that all is as expected. Should have 3 and only 3 failed tests.
$expectedFailed = $false
foreach($outputLine in $testOutput)
{
if($outputLine.Contains("3 failed"))
{
$expectedFailed = $true
}
}
if(!$expectedFailed)
{
Write-Output "::error::Failed running the accessibility-axe demo tests. Expected exactly 3 failed tests."
Exit 1
}
Exit 0
accessibility-lighthouse:
name: accessibility-lighthouse demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/accessibility-lighthouse/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-accessibility-lighthouse
- name: accessibility-lighthouse demo
run: |
cd "${{ github.workspace }}/demos/accessibility-lighthouse"
npm ci
npx playwright install --with-deps
npm test
# Check that the lighthouse audit worked as expected.
# The check is done by verifying that the audit-report.json produced by lighthouse
# contains the expected score results. If this file doesn't exist or doesn't have
# the expected scores then it should be an indication that something is wrong.
$auditReport = Get-ChildItem -Path . -Filter audit-report.json -Recurse -ErrorAction SilentlyContinue -Force
$auditReportJson = Get-Content -Raw $auditReport | ConvertFrom-Json
$performanceCategory = $auditReportJson.categories | where { $_.name -eq "Performance" }
$accessibilityCategory = $auditReportJson.categories | where { $_.name -eq "Accessibility" }
$bestPracticesCategory = $auditReportJson.categories | where { $_.name -eq "Best Practices" }
$seoCategory = $auditReportJson.categories | where { $_.name -eq "SEO" }
Write-Output $auditReportJson
if($performanceCategory.score -le 0.8 -OR $accessibilityCategory.score -le 0.8 -OR $bestPracticesCategory.score -le 0.8 -OR $seoCategory.score -le 0.8)
{
Write-Output "::error::Failed running the accessibility-lighthouse demo tests. Audit report didn't produce expected scores."
Exit 1
}
Exit 0
code-coverage-with-istanbul-via-webpack-babel-plugin:
name: code-coverage-with-istanbul-via-webpack-babel-plugin demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/code-coverage-with-istanbul-via-webpack-babel-plugin/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-code-coverage-with-istanbul-via-webpack-babel-plugin
- name: code-coverage-with-istanbul-via-webpack-babel-plugin demo
run: |
cd "${{ github.workspace }}/demos/code-coverage-with-istanbul-via-webpack-babel-plugin"
npm ci
npx playwright install --with-deps
npm test
# Check that the code coverage worked as expected.
# The check is done by running the command to generate the code coverage
# and asserting on the values of the summary report.
npm run coverage:report | Tee-Object -Variable coverageSummary
$expectedStatements = $false
$expectedBranches = $false
$expectedFunctions = $false
$expectedLines = $false
foreach($coverageLine in $coverageSummary)
{
if($coverageLine.Contains("Statements : 90% ( 9/10 )"))
{
$expectedStatements = $true
}
elseif($coverageLine.Contains("Branches : 100% ( 4/4 )"))
{
$expectedBranches = $true
}
elseif($coverageLine.Contains("Functions : 50% ( 1/2 )"))
{
$expectedFunctions = $true
}
elseif($coverageLine.Contains("Lines : 100% ( 9/9 )"))
{
$expectedLines = $true
}
}
if(!$expectedStatements -OR !$expectedBranches -OR !$expectedFunctions -OR !$expectedLines)
{
Write-Output "::error::Failed running the code-coverage-with-istanbul-via-webpack-babel-plugin demo. Code coverage summary is different from what is expected."
Exit 1
}
Exit 0
code-coverage-with-monocart-reporter:
name: code-coverage-with-monocart-reporter demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/code-coverage-with-monocart-reporter/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-code-coverage-with-monocart-reporter
- name: code-coverage-with-monocart-reporter demo
run: |
cd "${{ github.workspace }}/demos/code-coverage-with-monocart-reporter"
npm ci
npx playwright install --with-deps
npm test | Tee-Object -Variable testOutput
# Check that the code coverage worked as expected.
# The check is done by asserting on the values of the summary report and
# veryfing that the expected coverage report files were created
$expectedLines = $false
foreach($testLine in $testOutput)
{
if($testLine.Contains("99.72 %"))
{
$expectedLines = $true
}
}
if(!$expectedLines)
{
Write-Output "::error::Failed running the code-coverage-with-monocart-reporter demo. Code coverage summary is different from what is expected."
Exit 1
}
$cobertura = Test-Path ./test-results/code-coverage/cobertura/code-coverage.cobertura.xml -PathType Leaf
$v8Report = Test-Path ./test-results/code-coverage/v8/index.html -PathType Leaf
$htmlSpaReport = Test-Path ./test-results/code-coverage/html-spa/index.html -PathType Leaf
$lcovReport = Test-Path ./test-results/code-coverage/lcov/code-coverage.lcov.info -PathType Leaf
if(!$cobertura -OR !$v8Report -OR !$htmlSpaReport -OR !$lcovReport)
{
Write-Output "::error::Failed running the code-coverage-with-monocart-reporter demo. Expected 4 reports but at least one is missing."
Exit 1
}
Exit 0
docker:
name: docker demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/docker/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-docker
- name: docker demo
run: |
cd "${{ github.workspace }}/demos/docker"
npm ci
npm test
# The docker demo has many options in the powershell script which are not tested.
# For now it will require manual testing on the docker demo powershell scripts to
# make sure everything is working as expected.
fixtures:
name: fixtures demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/fixtures/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-fixtures
- name: fixtures demo
run: |
cd "${{ github.workspace }}/demos/fixtures"
npm ci
npx playwright install --with-deps
npm test | Tee-Object -Variable testOutput
# Check that all is as expected. Should have 9 failed, 1 skipped and
# 8 passed tests.
$expectedFailed = $false
$expectedSkipped = $false
$expectedPassed = $false
foreach($outputLine in $testOutput)
{
if($outputLine.Contains("9 failed"))
{
$expectedFailed = $true
}
elseif($outputLine.Contains("1 skipped"))
{
$expectedSkipped = $true
}
elseif($outputLine.Contains("8 passed"))
{
$expectedPassed = $true
}
}
if(!$expectedFailed -OR !$expectedSkipped -OR !$expectedPassed)
{
Write-Output "expectedFailed=$expectedFailed"
Write-Output "expectedSkipped=$expectedSkipped"
Write-Output "expectedPassed=$expectedPassed"
Write-Output "::error::Failed running the fixtures demo tests. Expected 9 failed, 1 skipped and 8 passed tests."
Exit 1
}
Exit 0
monocart-reporter-advanced-config:
name: monocart-reporter-advanced-config demo
needs: [checkout-repo]
permissions:
contents: read
runs-on: windows-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/monocart-reporter-advanced-config/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-monocart-reporter-advanced-config
- name: monocart-reporter-advanced-config demo
run: |
cd "${{ github.workspace }}/demos/monocart-reporter-advanced-config"
npm ci
npx playwright install --with-deps
npm test
# There's no easy way to test that this demo is working as expected.
# For now this demo relies on manual testing to make sure everything
# is working.
stale-screenshots-cleanup:
name: stale-screenshots-cleanup demo
needs: [checkout-repo]
permissions: write-all
runs-on: windows-latest
steps:
- name: Download repo from workflow artifacts
uses: actions/download-artifact@v4
with:
name: ${{ env.REPO_ARTIFACT_NAME }}
- name: Get npm cache directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT}
- name: Cache npm packages
uses: actions/cache@v4
id: npm-cache
with:
save-always: true
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('./demos/stale-screenshots-cleanup/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-stale-screenshots-cleanup
- name: stale-screenshots-cleanup demo
run: |
cd "${{ github.workspace }}/demos/stale-screenshots-cleanup"
npm ci
npx playwright install --with-deps
npm test
# There's no easy way to test that this demo is working as expected.
# For now this demo relies on manual testing to make sure everything
# is working.
delete-repo-artifact:
name: Delete repo artifact
needs: [
checkout-repo,
accessibility-axe,
accessibility-lighthouse,
code-coverage-with-istanbul-via-webpack-babel-plugin,
code-coverage-with-monocart-reporter,
docker,
fixtures,
monocart-reporter-advanced-config,
stale-screenshots-cleanup,
]
permissions:
actions: write
runs-on: ubuntu-latest
steps:
- name: Delete repo artifact
uses: geekyeggo/delete-artifact@v5
with:
token: ${{ github.token }}
name: ${{ env.REPO_ARTIFACT_NAME }}