Skip to content

Commit 72e4b53

Browse files
authored
fix: npm install --force when node v17
1 parent c3c6bef commit 72e4b53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343
- name: Install Packages
4444
run: npm install
4545
# TODO(btmills): Remove Node 16 --force branching after releasing v8.0.0 final.
46-
if: ${{ !startswith(matrix.node, '16') }}
46+
if: ${{ !startswith(matrix.node, '16') && !startswith(matrix.node, '17') }}
4747
- name: Install Packages
4848
run: npm install --force
49-
if: ${{ startswith(matrix.node, '16') }}
49+
if: ${{ startswith(matrix.node, '16') || startswith(matrix.node, '17') }}
5050
- name: Test
5151
run: node Makefile mocha
5252
- name: Fuzz Test

0 commit comments

Comments
 (0)