File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 13
13
if : " !contains(github.event.head_commit.message, '[ci skip]')"
14
14
strategy :
15
15
matrix :
16
- node : [16]
16
+ node : [16, 14 ]
17
17
platform : [ubuntu-latest, macos-latest, windows-latest]
18
18
runs-on : ${{ matrix.platform }}
19
19
steps :
39
39
run : npm run lint
40
40
- name : run tests
41
41
run : npm run test
42
+ if : matrix.node === 16 # Only run unit test on node 16, more at: https://github.com/facebook/jest/issues/11438
42
43
- name : build library for e2e tests
43
44
run : npm run build
44
45
- name : build integration tests
Original file line number Diff line number Diff line change 7
7
build :
8
8
strategy :
9
9
matrix :
10
- node : [16]
10
+ node : [16, 14 ]
11
11
platform : [ubuntu-latest, macos-latest, windows-latest]
12
12
runs-on : ${{ matrix.platform }}
13
13
steps :
33
33
run : npm run lint
34
34
- name : run tests
35
35
run : npm run test
36
+ if : matrix.node === 16 # Only run unit test on node 16, more at: https://github.com/facebook/jest/issues/11438
36
37
- name : build library for e2e tests
37
38
run : npm run build
38
39
- name : build integration tests
You can’t perform that action at this time.
0 commit comments