ci: use npm install instead of npm ci to avoid lock file version mismatch
All checks were successful
Build & Push Docker Image / test (push) Successful in 10s
Build & Push Docker Image / build-and-push (push) Successful in 44s

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>
This commit is contained in:
Giancarmine Salucci
2026-05-09 15:54:32 +02:00
parent 76051e52dd
commit a76625d378

View File

@@ -29,7 +29,7 @@ jobs:
cache: 'npm'
- name: Install dependencies
run: npm ci
run: npm install
- name: Run tests
run: npm test