Skip to content

Commit

Permalink
ci: Added retry to flaky wasm test GitHub step
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau committed Dec 6, 2024
1 parent 85e0f5b commit 759c532
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,13 @@ jobs:
uses: Swatinem/[email protected]

- name: Run tests
run: |
cd crates/wasm-test-runner
./run.sh
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
command: |
cd crates/wasm-test-runner
./run.sh
- name: Run build
run: |
Expand Down

0 comments on commit 759c532

Please sign in to comment.