v1.8.0 #429

Merged
LukeGus merged 198 commits from dev-1.8.0 into main 2025-11-05 16:36:16 +00:00
Showing only changes of commit f37fce4f92 - Show all commits

View File

@@ -154,17 +154,16 @@ jobs:
- name: Install dependencies
run: |
rm -f package-lock.json
# Retry npm install up to 3 times on failure
# Retry npm ci up to 3 times on failure
for i in 1 2 3; do
if npm install; then
if npm ci; then
break
else
if [ $i -eq 3 ]; then
echo "npm install failed after 3 attempts"
echo "npm ci failed after 3 attempts"
exit 1
fi
echo "npm install attempt $i failed, retrying in 10 seconds..."
echo "npm ci attempt $i failed, retrying in 10 seconds..."
sleep 10
fi
done