Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): Retry failing E2E tests once using retry action #1781

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/e2e-k3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,15 @@ jobs:

- name: Wait for the pods to be ready (timeout 480s)
run: ./.github/scripts/wait_for_pods_to_be_ready.py
- name: Sleep for 10 secs
run: sleep 10
- name: Sleep for 20 secs
run: sleep 20
- name: Run E2E test
run: cd website && npm run e2e
uses: nick-fields/retry@v3
with:
command: cd website && npm run e2e
max_attempts: 2
timeout_minutes: 30
retry_wait_seconds: 10
- uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
Expand Down
Loading