Skip to content

Commit 9ff5556

Browse files
committed
fix: replace npm ci with npm install in CI/CD workflow
1 parent e2e5d8d commit 9ff5556

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ jobs:
2222
uses: actions/setup-node@v3
2323
with:
2424
node-version: ${{ matrix.node-version }}
25-
cache: 'npm'
2625

2726
- name: Install dependencies
28-
run: npm ci --ignore-scripts
27+
run: npm install --ignore-scripts
2928

3029
- name: Run tests
3130
run: npm test
@@ -51,7 +50,7 @@ jobs:
5150
registry-url: 'https://registry.npmjs.org'
5251

5352
- name: Install dependencies
54-
run: npm ci --ignore-scripts
53+
run: npm install --ignore-scripts
5554

5655
- name: Run tests
5756
run: npm test

0 commit comments

Comments
 (0)