Skip to content

Commit f756b92

Browse files
committed
chore: update workflows to include node 16
1 parent 4aa89de commit f756b92

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build_lint_test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
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 }}

0 commit comments

Comments
 (0)