Skip to content

Commit 29063a7

Browse files
committed
chore: use npm ci instead of npm install in CI
- npm ci is faster than npm install in CI environments - Strictly enforces package-lock.json consistency - Removes node_modules before installing (clean slate) - Fails if package.json and package-lock.json are out of sync - Aligns with deploy-worker.yml which already uses npm ci
1 parent b34be13 commit 29063a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
path: build/web
142142

143143
- name: Install npm dependencies
144-
run: npm install
144+
run: npm ci
145145

146146
- name: Install Playwright browsers
147147
run: npx playwright install --with-deps chromium

0 commit comments

Comments
 (0)