File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 6
6
test :
7
7
name : e2e
8
8
runs-on : ubuntu-20.04
9
- container : node:14
9
+ strategy :
10
+ matrix :
11
+ node-version : [12.x, 14.x, 15.x, 16.x]
10
12
steps :
11
13
- uses : actions/checkout@v2
14
+ - name : Use Node.js ${{ matrix.node-version }}
15
+ uses : actions/setup-node@v1
16
+ with :
17
+ node-version : ${{ matrix.node-version }}
12
18
- name : yarn test:e2e
13
19
run : |
14
- yarn install
15
- yarn test:e2e
20
+ yarn install
21
+ yarn test:e2e
Original file line number Diff line number Diff line change 6
6
test :
7
7
name : test
8
8
runs-on : ubuntu-20.04
9
- container : node:14
9
+ strategy :
10
+ matrix :
11
+ node-version : [12.x, 14.x, 15.x, 16.x]
10
12
steps :
11
13
- uses : actions/checkout@v2
14
+ - name : Use Node.js ${{ matrix.node-version }}
15
+ uses : actions/setup-node@v1
16
+ with :
17
+ node-version : ${{ matrix.node-version }}
12
18
- name : Generate coverage report
13
19
run : |
14
20
yarn install
You can’t perform that action at this time.
0 commit comments