Fail CI after exhausted WebUI install retries
Some checks failed
Dependency Audit / dependency-audit (push) Successful in 1m38s
Release Integration / release-integration (push) Has been cancelled
Module Matrix / module-matrix (push) Has been cancelled

This commit is contained in:
2026-07-11 00:19:17 +02:00
parent 722c9e5d1c
commit 7b7cc8ada7
3 changed files with 3 additions and 6 deletions

View File

@@ -49,9 +49,8 @@ jobs:
if npm install --prefer-online; then if npm install --prefer-online; then
break break
fi fi
status=$?
if [ "$attempt" = 3 ]; then if [ "$attempt" = 3 ]; then
exit "$status" exit 1
fi fi
sleep $((attempt * 10)) sleep $((attempt * 10))
npm cache clean --force npm cache clean --force

View File

@@ -47,9 +47,8 @@ jobs:
if npm install --prefer-online; then if npm install --prefer-online; then
break break
fi fi
status=$?
if [ "$attempt" = 3 ]; then if [ "$attempt" = 3 ]; then
exit "$status" exit 1
fi fi
sleep $((attempt * 10)) sleep $((attempt * 10))
npm cache clean --force npm cache clean --force

View File

@@ -47,9 +47,8 @@ jobs:
if npm install --prefer-online; then if npm install --prefer-online; then
break break
fi fi
status=$?
if [ "$attempt" = 3 ]; then if [ "$attempt" = 3 ]; then
exit "$status" exit 1
fi fi
sleep $((attempt * 10)) sleep $((attempt * 10))
npm cache clean --force npm cache clean --force