Skip to content

Commit

Permalink
fix: npm install --force when node v17
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed Oct 20, 2021
1 parent c3c6bef commit 72e4b53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -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 72e4b53

Please sign in to comment.