Skip to content

Commit

Permalink
chore: test larger gh runners (#8545)
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan authored and juice49 committed Feb 11, 2025
1 parent 1f74e17 commit 6f80158
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-ct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
install:
timeout-minutes: 30
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-m
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
playwright-ct-test:
timeout-minutes: 30
needs: [install]
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-m
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
merge-reports:
if: always()
needs: [playwright-ct-test]
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-m
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
actions: write # needed to delete the cache
timeout-minutes: 30
name: Cleanup (${{ matrix.project }})
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-m
needs: [playwright-ct-test]

strategy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
install:
timeout-minutes: 30
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:

playwright-test:
timeout-minutes: 30
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
needs: [install]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
merge-reports:
if: always()
needs: [playwright-test]
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
actions: write # needed to delete the cache
timeout-minutes: 30
name: Cleanup (${{ matrix.project }})
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
needs: [playwright-test]

strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/efps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
efps-test:
timeout-minutes: 30
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
merge-reports:
if: always()
needs: [efps-test]
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# we want to know if a test fails on a specific node version
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest-m]
node: [18, 20, 22]
experimental: [false]
shardIndex: [1, 2, 3, 4]
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
report-coverage:
if: ${{ !cancelled() }}
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m

steps:
- name: Checkout
Expand Down

0 comments on commit 6f80158

Please sign in to comment.