From 15306dc0c280a15b8ce189d82a9c265af74dfee3 Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Sun, 28 Jun 2026 23:08:49 +0200 Subject: [PATCH] ci: use npm install instead of npm ci to avoid lockfile sync issues 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 --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a2b665a..f70bb70 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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