File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 12
12
check-circular :
13
13
name : Circular Dependencies
14
14
timeout-minutes : 5
15
- runs-on : ubuntu-18.04
15
+ runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v2
18
18
- name : Use Node.js ${{ matrix.NODE_VERSION }}
32
32
check-lint :
33
33
name : Lint
34
34
timeout-minutes : 5
35
- runs-on : ubuntu-18.04
35
+ runs-on : ubuntu-latest
36
36
steps :
37
37
- uses : actions/checkout@v2
38
38
- name : Use Node.js ${{ matrix.NODE_VERSION }}
50
50
run : npm ci
51
51
- run : npm run lint
52
52
check-tests :
53
+ strategy :
54
+ matrix :
55
+ include :
56
+ - name : Node 12
57
+ NODE_VERSION : 12
58
+ - name : Node 14
59
+ NODE_VERSION : 14
60
+ - name : Node 16
61
+ NODE_VERSION : 16
62
+ - name : Node 18
63
+ NODE_VERSION : 18
64
+ fail-fast : false
53
65
name : Tests
54
66
timeout-minutes : 5
55
- runs-on : ubuntu-18.04
67
+ runs-on : ubuntu-latest
56
68
steps :
57
69
- uses : actions/checkout@v2
58
70
- name : Use Node.js
You can’t perform that action at this time.
0 commit comments