fix(ci): use npm install instead of npm ci in Pages CI

package-lock.json is gitignored for the pages directory, so npm ci
always fails in CI (no lockfile present after checkout). Switch to
npm install to match deploy-pages.yml behavior.
This commit is contained in:
kite
2026-07-24 23:22:46 +08:00
parent 483e1b2686
commit 6ae397b894
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
working-directory: pages
run: npm ci
run: npm install
- name: Typecheck
working-directory: pages