using npm install instead of npm ci

This commit is contained in:
2025-10-26 01:18:25 +02:00
parent 23acd88ced
commit c773740634
2 changed files with 6 additions and 21 deletions

View File

@@ -78,9 +78,7 @@ jobs:
- name: Install backend dependencies
working-directory: ./backend
run: |
# Try npm ci first, if it fails use npm install
npm ci || (echo "package-lock.json out of sync, using npm install..." && npm install)
run: npm install
- name: Run TypeScript check
working-directory: ./backend