Skip to content

Commit 03b9550

Browse files
committed
fix: Remove npm cache requirement from CI workflow
- Change npm ci to npm install (no lock file in repo) - Remove cache: 'npm' from setup-node action - Fixes CI failure: Dependencies lock file is not found
1 parent 57d742d commit 03b9550

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ jobs:
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
cache: 'npm'
2524

2625
- name: Install dependencies
27-
run: npm ci
26+
run: npm install
2827

2928
- name: Run linter
3029
run: npm run lint --if-present

0 commit comments

Comments
 (0)