Fix CI: use npm install instead of npm ci
All checks were successful
Build and Push Docker Image / lint-and-typecheck (push) Successful in 1m37s
Build and Push Docker Image / build (push) Successful in 3m54s

The lint-and-typecheck job was using npm ci which requires
package-lock.json to be in sync. Changed to npm install for
Prisma 7 upgrade compatibility.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-17 14:47:05 +01:00
parent ccde726123
commit d378fd7439

View File

@@ -29,7 +29,7 @@ jobs:
node-version: '20'
- name: Install dependencies
run: npm ci
run: npm install
- name: Generate Prisma client
run: npx prisma generate