File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1616 if : " !contains(github.event.head_commit.message, 'ci skip')"
1717 strategy :
1818 matrix :
19- node-version : [12.x]
19+ node-version : [12.x, 14.x ]
2020
2121 steps :
2222 - uses : actions/checkout@v2.3.5
@@ -30,24 +30,24 @@ jobs:
3030 - run : yarn setup
3131 - run : yarn dev-utils doc-index
3232 - run : yarn lint
33- - run : yarn test -i
33+ - run : yarn test
3434
3535 build_node_14 :
36- # only want to use codecov for node 14
37- name : Build Using Node 14
36+ # only want to use codecov for node 16
37+ name : Build Using Node 16
3838 runs-on : ubuntu-latest
3939 if : " !contains(github.event.head_commit.message, 'ci skip')"
4040 steps :
4141 - uses : actions/checkout@v2.3.5
4242
43- - name : Use Node.js 14
43+ - name : Use Node.js 16
4444 uses : actions/setup-node@v2.4.1
4545 with :
46- node-version : 14
46+ node-version : 16
4747 cache : yarn
4848 - run : yarn
4949 - run : yarn setup
5050 - run : yarn dev-utils doc-index
5151 - run : yarn lint
52- - run : yarn test -i - -coverage
52+ - run : yarn test --coverage
5353 - run : npx codecov -t ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments