Skip to content

Commit b4fd991

Browse files
committed
ci: use npm install instead of npm ci (package-lock.json not tracked)
1 parent c2bfbe6 commit b4fd991

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 22
22-
cache: npm
2322

2423
- name: Install dependencies
25-
run: npm ci
24+
run: npm install
2625

2726
- name: Run tests
2827
run: npm test

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ jobs:
2222
uses: actions/setup-node@v4
2323
with:
2424
node-version: 22
25-
cache: npm
2625

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

3029
- name: Run checks
3130
run: npm run ci

0 commit comments

Comments
 (0)