Skip to content

Commit 48d2e6f

Browse files
committed
Update GitHub Actions workflow to replace npm ci with npm install after removing package-lock.json, ensuring a fresh installation of dependencies for improved consistency in the testing environment.
1 parent 26ec7be commit 48d2e6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
restore-keys: |
3232
${{ runner.os }}-node-
3333
- name: Install dependencies
34-
run: npm ci
35-
34+
run: |
35+
rm -f package-lock.json
36+
npm install
3637
- name: Run tests
3738
run: npm test
3839
test_win:

0 commit comments

Comments
 (0)