Skip to content

Commit

Permalink
Build: add node v17 (#15193)
Browse files Browse the repository at this point in the history
* Build: add node v17

* fix: npm install --force when node v17
  • Loading branch information
aladdin-add committed Oct 21, 2021
1 parent 0fb3bb2 commit 1b87fa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x, 14.x, 12.x, "12.22.0"]
node: [17.x, 16.x, 14.x, 12.x, "12.22.0"]
include:
- os: windows-latest
node: "12.x"
Expand All @@ -43,10 +43,10 @@ jobs:
- name: Install Packages
run: npm install
# TODO(btmills): Remove Node 16 --force branching after releasing v8.0.0 final.
if: ${{ !startswith(matrix.node, '16') }}
if: ${{ !startswith(matrix.node, '16') && !startswith(matrix.node, '17') }}
- name: Install Packages
run: npm install --force
if: ${{ startswith(matrix.node, '16') }}
if: ${{ startswith(matrix.node, '16') || startswith(matrix.node, '17') }}
- name: Test
run: node Makefile mocha
- name: Fuzz Test
Expand Down

0 comments on commit 1b87fa8

Please sign in to comment.