-
-
Notifications
You must be signed in to change notification settings - Fork 3
490 lines (438 loc) · 17.6 KB
/
node.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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
on:
workflow_call:
inputs:
range:
description: "node.js semver range"
required: true
type: string
notable:
description: "notable versions range"
required: false
type: string
type:
description: 'majors or minors'
default: majors
required: false
type: string
build-command:
description: 'optional build command to run once, prior to all the matrix steps'
default: ''
required: false
type: string
build-output-dir:
description: 'build output directory to cache'
default: ''
required: false
type: string
command:
description: '`run:` step'
required: true
type: string
continue-on-error:
description: 'whether to continue on error'
default: false
required: false
type: boolean
skip-ls-check:
description: 'skip `npm ls`'
default: false
required: false
type: boolean
after_install:
description: 'command to run after `npm install` but before `npm ls`'
required: false
type: string
timeout-minutes:
required: false
type: number
default: 30
coverage:
description: coverage provider
required: false
type: string
default: codecov
subpackage:
description: 'subdirectory to `npm install` in'
required: false
type: string
default: ''
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: ljharb/actions/node/build@main
with:
build-command: ${{ inputs.build-command }}
if: ${{ inputs.build-command != '' }}
- name: 'cache build output'
uses: actions/cache/save@v4
with:
path: ${{ inputs.build-output-dir }}
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
if: ${{ inputs.build-command != '' && inputs.build-output-dir != '' }}
- run: true
if: ${{ inputs.build-command == '' }}
matrix:
runs-on: ubuntu-22.04
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
nonlatest: ${{ steps.set-matrix.outputs.optionals }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
versionsAsRoot: true
type: ${{ inputs.type }}
preset: ${{ inputs.range }}
notable: ${{ inputs.notable || '' }}
vlt-matrix:
runs-on: ubuntu-22.04
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
versionsAsRoot: true
type: ${{ inputs.type }}
empty: ${{ contains(inputs.range, '-') }}
preset: "${{ inputs.range }} >=22" # vlt is `20 || >= 22`
notable: ${{ inputs.notable || '' }}
bun-matrix:
runs-on: ubuntu-22.04
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
versionsAsRoot: true
type: ${{ inputs.type }}
empty: ${{ contains(inputs.range, '-') }}
preset: '${{ inputs.range }} >= 22' # only run bun install on node 22+
notable: ${{ inputs.notable || '' }}
vlt-latest:
if: ${{ needs.vlt-matrix.outputs.latest != '[]' || inputs.after_install != '' }}
needs: [build, vlt-matrix]
name: 'latest (vlt i)'
runs-on: ubuntu-22.04
continue-on-error: true # see https://github.com/vltpkg/vltpkg/issues/267 # ${{ inputs.continue-on-error }}
timeout-minutes: ${{ inputs.timeout-minutes }}
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.vlt-matrix.outputs.latest) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: actions/checkout@v4
with:
persist-credentials: false
show-progress: false
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }}'
with:
node-version: ${{ matrix.node-version }}
skip-ls-check: true
skip-install: true
- run: echo "NVM_DIR=${NVM_DIR}" >> $GITHUB_ENV
- uses: ljharb/actions/vlt/install@main
name: 'vlt install'
with:
nvm-dir: "${{ env.NVM_DIR }}"
cache-node-modules-key: vlt-node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check && 'true' || 'false' }}
- uses: ljharb/actions/vlt/install@main
if: ${{ inputs.subpackage != '' }}
name: 'vlt install, subpackage: ${{ inputs.subpackage }}'
with:
nvm-dir: "${{ env.NVM_DIR }}"
before_install: cd ${{ inputs.subpackage }}
cache-node-modules-key: vlt-node_modules-${{ inputs.subpackage }}-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check && 'true' || 'false' }}
- run: echo "PACKAGE_JSON=$(jq -c . < package.json)" >> $GITHUB_ENV
- name: 'restore build output'
uses: actions/cache/restore@v4
with:
path: ${{ inputs.build-output-dir }}
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
if: ${{ inputs.build-command != '' && inputs.build-output-dir != '' }}
- if: ${{ startsWith(fromJson(env.PACKAGE_JSON).name, '@') && startsWith(matrix.node-version, '0.') && ! startsWith(matrix.node-version, '0.1') }}
run: eval $(node -e 'console.log(require("./package.json").scripts["${{ inputs.command }}".slice(8)])')
env:
PATH: "./node_modules/.bin/:${{ env.PATH }}"
- run: ${{ inputs.command }}
if: ${{ ! startsWith(fromJson(env.PACKAGE_JSON).name, '@') || ! startsWith(matrix.node-version, '0') || startsWith(matrix.node-version, '0.1') }}
- uses: codecov/codecov-action@v3.1.5
if: ${{ inputs.coverage == 'codecov' }}
- uses: coverallsapp/github-action@v2
if: ${{ inputs.coverage == 'coveralls' }}
with:
parallel: true
flag-name: run ${{ join(matrix.*, ' - ') }}
bun-latest:
if: ${{ needs.bun-matrix.outputs.latest != '[]' || inputs.after_install != '' }}
needs: [build, bun-matrix]
name: 'latest (bun i)'
runs-on: ubuntu-22.04
continue-on-error: true # see https://github.com/oven-sh/bun/issues/8780 # ${{ inputs.continue-on-error }}
timeout-minutes: ${{ inputs.timeout-minutes }}
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.bun-matrix.outputs.latest) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: actions/checkout@v4
with:
persist-credentials: false
show-progress: false
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }}'
with:
node-version: ${{ matrix.node-version }}
skip-ls-check: true
skip-install: true
- run: echo "NVM_DIR=${NVM_DIR}" >> $GITHUB_ENV
- uses: ljharb/actions/bun/install@main
name: 'bun install'
with:
nvm-dir: "${{ env.NVM_DIR }}"
cache-node-modules-key: bun-node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check && 'true' || 'false' }}
- uses: ljharb/actions/bun/install@main
if: ${{ inputs.subpackage != '' }}
name: 'bun install, subpackage: ${{ inputs.subpackage }}'
with:
nvm-dir: "${{ env.NVM_DIR }}"
before_install: cd ${{ inputs.subpackage }}
cache-node-modules-key: bun-node_modules-${{ inputs.subpackage }}-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check && 'true' || 'false' }}
- run: echo "PACKAGE_JSON=$(jq -c . < package.json)" >> $GITHUB_ENV
- name: 'restore build output'
uses: actions/cache/restore@v4
with:
path: ${{ inputs.build-output-dir }}
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
if: ${{ inputs.build-command != '' && inputs.build-output-dir != '' }}
- if: ${{ startsWith(fromJson(env.PACKAGE_JSON).name, '@') && startsWith(matrix.node-version, '0.') && ! startsWith(matrix.node-version, '0.1') }}
run: eval $(node -e 'console.log(require("./package.json").scripts["${{ inputs.command }}".slice(8)])')
env:
PATH: "./node_modules/.bin/:${{ env.PATH }}"
- run: ${{ inputs.command }}
if: ${{ ! startsWith(fromJson(env.PACKAGE_JSON).name, '@') || ! startsWith(matrix.node-version, '0') || startsWith(matrix.node-version, '0.1') }}
- uses: codecov/codecov-action@v3.1.5
if: ${{ inputs.coverage == 'codecov' }}
- uses: coverallsapp/github-action@v2
if: ${{ inputs.coverage == 'coveralls' }}
with:
parallel: true
flag-name: run ${{ join(matrix.*, ' - ') }}
latest:
needs: [build, matrix]
name: 'latest'
runs-on: ubuntu-22.04
continue-on-error: ${{ inputs.continue-on-error }}
timeout-minutes: ${{ inputs.timeout-minutes }}
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: actions/checkout@v4
with:
persist-credentials: false
show-progress: false
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
node-version: ${{ matrix.node-version }}
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check || startsWith(matrix.node-version, '0') && 'true' || 'false' }}
after_install: ${{ inputs.after_install }}
- run: echo "NVM_DIR=${NVM_DIR}" >> $GITHUB_ENV
- uses: ljharb/actions/npm/install@main
if: ${{ inputs.subpackage != '' }}
name: 'npm install, subpackage: ${{ inputs.subpackage }}'
with:
nvm-dir: "${{ env.NVM_DIR }}"
before_install: cd ${{ inputs.subpackage }}
cache-node-modules-key: node_modules-${{ inputs.subpackage }}-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check || startsWith(matrix.node-version, '0') && 'true' || 'false' }}
- run: echo "PACKAGE_JSON=$(jq -c . < package.json)" >> $GITHUB_ENV
- name: 'restore build output'
uses: actions/cache/restore@v4
with:
path: ${{ inputs.build-output-dir }}
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
if: ${{ inputs.build-command != '' && inputs.build-output-dir != '' }}
- if: ${{ startsWith(fromJson(env.PACKAGE_JSON).name, '@') && startsWith(matrix.node-version, '0.') && ! startsWith(matrix.node-version, '0.1') }}
run: eval $(node -e 'console.log(require("./package.json").scripts["${{ inputs.command }}".slice(8)])')
env:
PATH: "./node_modules/.bin/:${{ env.PATH }}"
- run: ${{ inputs.command }}
if: ${{ ! startsWith(fromJson(env.PACKAGE_JSON).name, '@') || ! startsWith(matrix.node-version, '0') || startsWith(matrix.node-version, '0.1') }}
- uses: codecov/codecov-action@v3.1.5
if: ${{ inputs.coverage == 'codecov' }}
- uses: coverallsapp/github-action@v2
if: ${{ inputs.coverage == 'coveralls' }}
with:
parallel: true
flag-name: run ${{ join(matrix.*, ' - ') }}
nonlatest:
needs: [build, matrix, latest]
name: 'non-latest'
timeout-minutes: ${{ inputs.timeout-minutes }}
if: ${{ needs.matrix.outputs.nonlatest != '[]' && (!github.head_ref || !startsWith(github.head_ref, 'renovate')) }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.nonlatest) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: actions/checkout@v4
with:
persist-credentials: false
show-progress: false
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
node-version: ${{ matrix.node-version }}
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: true
after_install: ${{ inputs.after_install }}
- run: echo "NVM_DIR=${NVM_DIR}" >> $GITHUB_ENV
- uses: ljharb/actions/npm/install@main
if: ${{ inputs.subpackage != '' }}
name: 'npm install, subpackage: ${{ inputs.subpackage }}'
with:
node-version: ${{ matrix.node-version }}
nvm-dir: "${{ env.NVM_DIR }}"
before_install: cd ${{ inputs.subpackage }}
cache-node-modules-key: node_modules-${{ inputs.subpackage }}-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
skip-ls-check: ${{ inputs.skip-ls-check || startsWith(matrix.node-version, '0') && 'true' || 'false' }}
- run: echo "PACKAGE_JSON=$(jq -c . < package.json)" >> $GITHUB_ENV
- name: 'restore build output'
uses: actions/cache/restore@v4
with:
path: ${{ inputs.build-output-dir }}
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
if: ${{ inputs.build-command != '' && inputs.build-output-dir != '' }}
- if: ${{ startsWith(fromJson(env.PACKAGE_JSON).name, '@') && startsWith(matrix.node-version, '0.') && ! startsWith(matrix.node-version, '0.1') }}
run: eval $(node -e 'console.log(require("./package.json").scripts["${{ inputs.command }}".slice(8)])')
env:
PATH: "./node_modules/.bin/:${{ env.PATH }}"
continue-on-error: true
- run: ${{ inputs.command }}
if: ${{ ! startsWith(fromJson(env.PACKAGE_JSON).name, '@') || ! startsWith(matrix.node-version, '0') || startsWith(matrix.node-version, '0.1') }}
continue-on-error: true
node:
name: node tests
needs: [latest, nonlatest, vlt-latest, bun-latest]
if: ${{ ! cancelled() }}
runs-on: ubuntu-22.04
steps:
- name: fail if previous jobs failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- name: Harden Runner
if: ${{ inputs.coverage == 'coveralls' }}
uses: step-security/harden-runner@v2
with:
disable-sudo: true
egress-policy: audit
allowed-endpoints: >
github.com:443
raw.githubusercontent.com:443
nodejs.org:443
iojs.org:443
registry.npmjs.org:443
actions-results-receiver-production.githubapp.com:443
- uses: coverallsapp/github-action@v2
if: ${{ inputs.coverage == 'coveralls' }}
with:
parallel-finished: true
- run: true