perf(ci): optimize npm install and fix deprecation warnings
Some checks failed
Release / Release (push) Waiting to run
Release / Build & Push Docker Image (push) Has been cancelled

- Add --prefer-offline --no-audit --no-fund flags to npm ci
- Fix semantic-release deprecation: use successCommentCondition instead of successComment
This commit is contained in:
Tuan-Dat Tran
2026-02-23 21:53:58 +01:00
parent 6f01124ac5
commit a593dd53c5
5 changed files with 16 additions and 16 deletions

View File

@@ -32,11 +32,11 @@ jobs:
cache: "npm"
- name: Install dependencies
run: npm ci
run: npm ci --prefer-offline --no-audit --no-fund
- name: Install backend dependencies
working-directory: ./backend
run: npm ci
run: npm ci --prefer-offline --no-audit --no-fund
- name: Build
run: npm run build