Skip to content

Commit

Permalink
Add back retry to system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
surilindur committed Nov 26, 2024
1 parent 9a7dfb8 commit 421700e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
node-version:
- 18.x
- 20.x
- 22.x
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Ensure line endings are consistent
run: git config --global core.autocrlf input
Expand All @@ -118,7 +114,11 @@ jobs:
- name: Install dependencies and build
run: yarn install --frozen-lockfile --ignore-engines
- name: Run system tests
run: yarn run test-ci:system
uses: nick-fields/retry@v3
with:
timeout_minutes: 2
max_attempts: 3
command: yarn run test-ci:system
env:
NODE_OPTIONS: --max_old_space_size=4096

Expand Down

0 comments on commit 421700e

Please sign in to comment.