-
Notifications
You must be signed in to change notification settings - Fork 324
326 lines (251 loc) · 8.6 KB
/
tests.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
name: Tests
on:
pull_request:
push:
branches:
- main
- 'feature/**'
- 'support/**'
workflow_dispatch:
concurrency:
group: tests-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
install:
name: Install
runs-on: ${{ matrix.runner }}
env:
PUPPETEER_SKIP_DOWNLOAD: true
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
- name: Install dependencies
uses: ./.github/workflows/actions/install-node
build:
name: Build
runs-on: ${{ matrix.runner }}
needs: [install]
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Restore dependencies
uses: ./.github/workflows/actions/install-node
- name: Build
uses: ./.github/workflows/actions/build
lint:
name: ${{ matrix.task.description }} (${{ matrix.runner }})
runs-on: ${{ matrix.runner }}
needs: [install]
env:
# Authorise GitHub API requests for EditorConfig checker binary
# https://www.npmjs.com/package/editorconfig-checker
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- windows-latest
task:
- description: Lint Sass
name: lint-scss
run: npm run lint:scss
cache: .cache/stylelint
- description: Lint JavaScript
name: lint-js
run: npm run lint:js
cache: .cache/eslint
- description: EditorConfig
name: lint-editorconfig
run: npm run lint:editorconfig
- description: Prettier
name: lint-prettier
run: npm run lint:prettier
cache: .cache/prettier
- description: TypeScript compiler
name: lint-types
run: npm run lint:types -- --incremental --pretty
cache: '**/*.tsbuildinfo'
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Restore dependencies
uses: ./.github/workflows/actions/install-node
- name: Cache linter
if: ${{ matrix.task.cache }}
uses: actions/cache@v3.3.2
with:
# Use faster GNU tar for all runners
enableCrossOsArchive: true
key: ${{ matrix.task.name }}-${{ runner.os }}
path: ${{ matrix.task.cache }}
- name: Run lint task
run: ${{ matrix.task.run }}
test:
name: ${{ matrix.task.description }} (${{ matrix.runner }})
runs-on: ${{ matrix.runner }}
needs: [install, build]
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- windows-latest
task:
- description: Nunjucks macro tests
name: test-macro
cache: .cache/jest
projects:
- Nunjucks macro tests
- description: JavaScript unit tests
name: test-unit
cache: .cache/jest
coverage: true
projects:
- JavaScript unit tests
- description: JavaScript behaviour tests
name: test-behaviour
cache: .cache/jest
coverage: true
projects:
- JavaScript behaviour tests
- description: JavaScript component tests
name: test-component
cache: |
.cache/jest
.cache/puppeteer
projects:
- JavaScript component tests
- description: Accessibility tests
name: test-accessibility
cache: |
.cache/jest
.cache/puppeteer
projects:
- Accessibility tests
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Restore dependencies
uses: ./.github/workflows/actions/install-node
- name: Restore build
uses: ./.github/workflows/actions/build
- name: Cache task
if: ${{ matrix.task.cache }}
uses: actions/cache@v3.3.2
with:
# Use faster GNU tar for all runners
enableCrossOsArchive: true
key: ${{ matrix.task.name }}-${{ runner.os }}
path: ${{ matrix.task.cache }}
- name: Run test task
# Use 2x CPU cores for hosted GitHub runners
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
run: npx jest --color ${{ format('--coverage={0} --maxWorkers=2 --selectProjects "{1}"', matrix.task.coverage || false, join(matrix.task.projects, '", "')) }}
- name: Save test coverage
uses: actions/upload-artifact@v4.0.0
with:
name: ${{ matrix.task.description }} coverage (${{ matrix.runner }})
path: coverage
if-no-files-found: ignore
verify:
name: ${{ matrix.task.description }} (${{ matrix.runner }})
runs-on: ${{ matrix.runner }}
needs: [install, build]
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- windows-latest
task:
- description: Verify package build
name: test-build-package
run: npm run build:package
- description: Verify distribution build
name: test-build-release
run: npm run build:release
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Restore dependencies
uses: ./.github/workflows/actions/install-node
- name: Restore build
uses: ./.github/workflows/actions/build
- name: Run verify task
run: ${{ matrix.task.run }}
package:
name: Export ${{ matrix.conditions }}, Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
needs: [install, build]
strategy:
fail-fast: false
matrix:
node-version:
- 12 # Node.js 12.20+ uses package exports with subpath patterns
- 18 # Node.js 17+ cannot use package exports with trailing slashes
- 20
conditions:
- require
- import
include:
- conditions: require
node-version: 12.18 # Node.js 12.18 uses package exports with trailing slashes
env:
# Node.js conditions override from "require" to "import" etc
# https://nodejs.org/api/cli.html#-c-condition---conditionscondition
FLAGS: ${{ matrix.conditions != 'require' && format(' --conditions {0}', matrix.conditions) || '' }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Restore build
uses: ./.github/workflows/actions/build
- name: Change Node.js version
uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node-version }}
- run: node --eval "console.log(require.resolve('govuk-frontend'))"${{ env.FLAGS }}
working-directory: packages/govuk-frontend
- run: node --eval "console.log(require.resolve('govuk-frontend/package.json'))"${{ env.FLAGS }}
working-directory: packages/govuk-frontend
- run: node --eval "console.log(require.resolve('govuk-frontend/dist/govuk/components/accordion/accordion.bundle.js'))"${{ env.FLAGS }}
working-directory: packages/govuk-frontend
- run: node --eval "console.log(require.resolve('govuk-frontend/dist/govuk/components/accordion/accordion.bundle.mjs'))"${{ env.FLAGS }}
working-directory: packages/govuk-frontend
- run: node --eval "console.log(require.resolve('govuk-frontend/dist/govuk/i18n.mjs'))"${{ env.FLAGS }}
working-directory: packages/govuk-frontend
regression:
name: Percy
needs: [install, build]
# Run existing "Percy screenshots" workflow
# (after install and build have been cached)
uses: ./.github/workflows/screenshots.yml
secrets: inherit
generate-diff-package:
name: Diff changes to npm package
needs: [install]
permissions:
pull-requests: write
# Run existing "Diff changes to npm package" workflow
# (after only install has been cached)
uses: ./.github/workflows/diff-change-to-package.yaml
generate-stats:
name: Stats comment
needs: [install]
permissions:
pull-requests: write
# Run existing "Stats comment" workflow
# (after only install has been cached)
uses: ./.github/workflows/stats-comment.yml