Skip to content

Commit

Permalink
trying to fix my workflow retry failures
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 5, 2024
1 parent 01fcaef commit 03219c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pr_ci_playwright_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ jobs:
while [[ $ATTEMPT -le $MAX_ATTEMPTS ]]; do
echo "Attempt $ATTEMPT of $MAX_ATTEMPTS"
yarn wait-on http://localhost:3000 --timeout ${WAIT_TIME}000
STATUS=$?
if [[ $? -eq 0 ]]; then
if [[ $STATUS -eq 0 ]]; then
echo "Server is ready!"
break
else
Expand Down

0 comments on commit 03219c9

Please sign in to comment.