-
-
Notifications
You must be signed in to change notification settings - Fork 50
75 lines (67 loc) · 1.91 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
name: 'Tests: node.js'
on: [pull_request, push]
permissions:
contents: read
jobs:
matrix:
runs-on: ubuntu-latest
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
minors: ${{ steps.set-matrix.outputs.optionals }}
steps:
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
versionsAsRoot: true
type: majors
preset: '>= 4' # fixme: `npm run react` fails in node 0.8; babel-register for tests fails < node 4
build:
runs-on: ubuntu-latest
steps:
- uses: ljharb/actions/node/build@main
with:
build-command: npm run test:prepare
- name: 'cache build output'
uses: actions/cache/save@v4
with:
path: |
build-test/
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
latest:
needs: [build, matrix]
name: 'majors'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
react:
- 16
- 15
- 15.4
- 0.14
# - 0.13 # tests fail currently
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
node-version: ${{ matrix.node-version }}
skip-ls-check: true
- name: 'restore build output'
uses: actions/cache/restore@v4
with:
path: |
build-test/
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
- run: npm run react
name: 'install react ${{ matrix.react }}'
env:
REACT: ${{ matrix.react }}
- uses: codecov/codecov-action@v3.1.5
node:
name: 'node'
needs: [latest]
runs-on: ubuntu-latest
steps:
- run: true