From 421700e44c6b9b06452158d4f88f5764900c413e Mon Sep 17 00:00:00 2001 From: surilindur <16085353+surilindur@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:34:02 +0100 Subject: [PATCH] Add back retry to system tests --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89504832..093f416f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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