Skip to content

Commit

Permalink
bump runner size to handle simultaneous tests better
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac Boyd committed Jul 23, 2024
1 parent 64dfc98 commit eb835a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
test:
name: "test-node-${{ matrix.node-version }}"
runs-on: runs-on,runner=2cpu-linux-x64
runs-on: runs-on,runner=4cpu-linux-x64
strategy:
fail-fast: true # if one job fails, stop the rest
matrix:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
paths: ./test-reports/jest/results.xml

lint-check:
runs-on: runs-on,runner=2cpu-linux-x64
runs-on: runs-on,runner=4cpu-linux-x64
steps:
- uses: actions/checkout@v4.1.0
- uses: "./.github/actions/prepare-repository"
Expand All @@ -52,7 +52,7 @@ jobs:
run: yarn lint:check

publish:
runs-on: runs-on,runner=2cpu-linux-x64
runs-on: runs-on,runner=4cpu-linux-x64
needs:
- test
- lint-check
Expand Down

0 comments on commit eb835a9

Please sign in to comment.