This commit is contained in:
Robin Grenzdörfer 2023-12-05 21:33:05 +00:00
parent 4fc33cd88b
commit 507b93180a

@ -87,10 +87,16 @@ jobs:
- name: Wait for Live Server - name: Wait for Live Server
run: | run: |
for i in {1..10}; do # tries 10 times at 5-second intervals attempts=0
curl http://127.0.0.1:8081 && break max_attempts=10
echo "Waiting for live-server to be ready..." while ! curl --output /dev/null --silent --head --fail http://127.0.0.1:8081; do
sleep 5 if [ $attempts -eq $max_attempts ]; then
echo "Live server not ready after $max_attempts attempts"
exit 1
fi
attempts=$((attempts+1))
echo "Waiting for live-server to be ready... attempt $attempts"
sleep 5
done done
- name: Test HTTP Request - name: Test HTTP Request