Skip to content

Commit 95e8d9d

Browse files
committed
fix: correct npm install command in CI fuzz testing workflow
- Replace problematic package-json flag usage with direct package installation - Install fast-check@3.22.0 and jest@29.7.0 directly for fuzz testing - Fix E404 error from incorrect npm command syntax
1 parent b7e36b0 commit 95e8d9d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ jobs:
8989

9090
- name: Install fast-check for fuzzing
9191
run: |
92-
echo '{"name":"fuzz-test","devDependencies":{"fast-check":"3.22.0","jest":"29.7.0"}}' > fuzz-package.json
93-
npm install --package-lock-only --package-json fuzz-package.json
94-
npm ci --package-json fuzz-package.json
92+
npm install fast-check@3.22.0 jest@29.7.0
9593
9694
- name: Run fuzz tests
9795
run: |

0 commit comments

Comments
 (0)