Skip to content

Commit

Permalink
ci: add test retries (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-sun authored Jun 29, 2024
1 parent 17a6ef4 commit e7565ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
run: pnpm -r lint

- name: Test
run: pnpm -r --workspace-concurrency=0 test:coverage
# The test script is moody
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
command: pnpm -r --workspace-concurrency=0 test:coverage

- name: Codecov js
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit e7565ad

Please sign in to comment.