Harden frontend install step in CI

This commit is contained in:
2026-03-27 13:25:38 +01:00
parent dccbd11224
commit b626d3b2f6
+7 -1
View File
@@ -33,7 +33,13 @@ jobs:
- name: Install frontend deps
working-directory: job-tracker-ui
run: npm ci
env:
npm_config_audit: 'false'
npm_config_fund: 'false'
run: |
node -v
npm -v
npm ci --no-audit --no-fund
- name: Test frontend
working-directory: job-tracker-ui