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

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:
Matt 2026-01-17 14:47:05 +01:00
parent ccde726123
commit d378fd7439
1 changed files with 1 additions and 1 deletions

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