fix(deploy): retry publish after clearing NuGet caches on NU3008 #5

Merged
cesnimda merged 2 commits from fix/deploy-nuget-integrity into main 2026-07-06 01:12:06 +02:00
Showing only changes of commit 4b38f7c164 - Show all commits
+6 -1
View File
@@ -39,7 +39,12 @@ jobs:
run: |
node -v
npm -v
npm ci --no-audit --no-fund
# npm ci occasionally segfaults on the runner (SIGSEGV/139, a memory/native
# flake). Retry once with a clean node_modules before failing the job.
npm ci --no-audit --no-fund \
|| ( echo "npm ci failed ($?) — cleaning node_modules and retrying once..." \
&& rm -rf node_modules \
&& npm ci --no-audit --no-fund )
- name: Test frontend
working-directory: job-tracker-ui