Skip to content

Commit b114631

Browse files
committed
ci: switch back to npm install for npm version compatibility
npm ci requires exact lockfile match which fails when lockfile is generated with npm 11.x but CI uses npm 10.x. Using npm install provides better compatibility across npm versions while still respecting the lockfile.
1 parent b2aafea commit b114631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
deno-version: v1.x
2222
- name: Install dependencies
23-
run: npm ci
23+
run: npm install
2424
- name: Lint
2525
run: npm run lint
2626
- name: Format check

0 commit comments

Comments
 (0)