From a76625d37817dd866cd0cba2de167517ba1e5ed4 Mon Sep 17 00:00:00 2001 From: Giancarmine Salucci Date: Sat, 9 May 2026 15:54:32 +0200 Subject: [PATCH] ci: use npm install instead of npm ci to avoid lock file version mismatch Lock file was generated with npm 11 (Node 24), CI runs npm 10 (Node 22). npm install avoids the strict sync check and matches the Dockerfile. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitea/workflows/docker-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml index 951113c..032b937 100644 --- a/.gitea/workflows/docker-build.yml +++ b/.gitea/workflows/docker-build.yml @@ -29,7 +29,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci + run: npm install - name: Run tests run: npm test