File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 6
6
- master
7
7
8
8
jobs :
9
- test-unix-node16 :
9
+ unix :
10
+ strategy :
11
+ matrix :
12
+ node_version : [ 16, 18 ]
10
13
runs-on : ubuntu-latest
11
14
steps :
12
15
- uses : actions/checkout@v3
13
16
- uses : actions/setup-node@v3
14
17
with :
15
- node-version : 16
18
+ node-version : ${{ matrix.node_version }}
16
19
- run : npm ci
17
20
- run : npm run build
18
21
- run : npm run test
19
22
- run : npm run test:e2e
20
- test-windows-node16 :
23
+ windows :
24
+ strategy :
25
+ matrix :
26
+ node_version : [ 16, 18 ]
21
27
runs-on : windows-latest
22
28
steps :
23
29
- uses : actions/checkout@v3
24
30
- uses : actions/setup-node@v3
25
31
with :
26
- node-version : 16
32
+ node-version : ${{ matrix.node_version }}
27
33
- run : npm ci
28
34
- run : npm run build
29
35
- run : npm run test:e2e
You can’t perform that action at this time.
0 commit comments