ci: use npm install instead of npm ci to avoid lockfile sync issues
All checks were successful
Build / Build & release (push) Successful in 13m34s

The CI runner resolves @emnapi deps differently than local npm, causing
npm ci to fail regardless of Node version. npm install is more forgiving.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Fredrik Johansson
2026-06-28 23:08:49 +02:00
parent 7c3cedc549
commit 15306dc0c2

View File

@@ -61,7 +61,7 @@ jobs:
- name: Build frontend
run: |
cd web
npm ci
npm install
npm run build
cp -r dist ../cmd/app/frontend/dist