File tree 1 file changed +19
-4
lines changed
1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
push :
5
5
branches :
6
- - master
6
+ - main
7
7
jobs :
8
+ setup :
9
+ name : Setup
10
+ runs-on : ubuntu-latest
11
+ outputs :
12
+ nodes : ${{ steps.nodes.outputs.nodes }}
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-node@v3
16
+ - name : Setup Node Version Matrix
17
+ id : nodes
18
+ run : |
19
+ NODES=$(npx -y @pkgjs/nv ls supported | jq '. | .version' | paste -sd "," -)
20
+ echo "nodes=[${NODES}]" >> $GITHUB_OUTPUT
21
+
8
22
test :
9
23
runs-on : ubuntu-latest
24
+ needs : setup
10
25
strategy :
11
26
matrix :
12
- node-version : [10.x, 12.x, 14.x, 15.x]
27
+ node-version : ${{ fromJson(needs.setup.outputs.nodes) }}
13
28
steps :
14
- - uses : actions/checkout@v1
29
+ - uses : actions/checkout@v4
15
30
- name : Use Node.js ${{ matrix.node-version }}
16
- uses : actions/setup-node@v1
31
+ uses : actions/setup-node@v3
17
32
with :
18
33
node-version : ${{ matrix.node-version }}
19
34
- name : npm install and test
You can’t perform that action at this time.
0 commit comments