Skip to content

Commit 21d18c3

Browse files
authoredFeb 26, 2025··
chore(ci): end custom runners experiment (#8774)
1 parent 84a5a6f commit 21d18c3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

Diff for: ‎.github/workflows/e2e-ct.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
install:
1515
timeout-minutes: 30
16-
runs-on: ubuntu-latest-m
16+
runs-on: ubuntu-latest
1717
env:
1818
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
1919
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
@@ -75,7 +75,7 @@ jobs:
7575
playwright-ct-test:
7676
timeout-minutes: 30
7777
needs: [install]
78-
runs-on: ubuntu-latest-m
78+
runs-on: ubuntu-latest
7979
env:
8080
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
8181
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
@@ -168,7 +168,7 @@ jobs:
168168
merge-reports:
169169
if: always()
170170
needs: [playwright-ct-test]
171-
runs-on: ubuntu-latest-m
171+
runs-on: ubuntu-latest
172172
steps:
173173
- uses: actions/checkout@v4
174174
- uses: actions/setup-node@v4
@@ -252,7 +252,7 @@ jobs:
252252
actions: write # needed to delete the cache
253253
timeout-minutes: 30
254254
name: Cleanup (${{ matrix.project }})
255-
runs-on: ubuntu-latest-m
255+
runs-on: ubuntu-latest
256256
needs: [playwright-ct-test]
257257

258258
strategy:

Diff for: ‎.github/workflows/e2e.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
jobs:
1616
install:
1717
timeout-minutes: 30
18-
runs-on: ubuntu-latest-m
18+
runs-on: ubuntu-latest
1919
env:
2020
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
2121
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
@@ -116,7 +116,7 @@ jobs:
116116

117117
playwright-test:
118118
timeout-minutes: 30
119-
runs-on: ubuntu-latest-m
119+
runs-on: ubuntu-latest
120120
needs: [install]
121121
env:
122122
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
@@ -231,7 +231,7 @@ jobs:
231231
merge-reports:
232232
if: always()
233233
needs: [playwright-test]
234-
runs-on: ubuntu-latest-m
234+
runs-on: ubuntu-latest
235235
steps:
236236
- uses: actions/checkout@v4
237237
- uses: actions/setup-node@v4
@@ -289,7 +289,7 @@ jobs:
289289
actions: write # needed to delete the cache
290290
timeout-minutes: 30
291291
name: Cleanup (${{ matrix.project }})
292-
runs-on: ubuntu-latest-m
292+
runs-on: ubuntu-latest
293293
needs: [playwright-test]
294294

295295
strategy:

Diff for: ‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# we want to know if a test fails on a specific node version
2626
fail-fast: false
2727
matrix:
28-
os: [ubuntu-latest-m]
28+
os: [ubuntu-latest]
2929
node: [18, 20, 22]
3030
experimental: [false]
3131
shardIndex: [1, 2, 3, 4]
@@ -97,7 +97,7 @@ jobs:
9797
report-coverage:
9898
if: ${{ !cancelled() }}
9999
needs: test
100-
runs-on: ubuntu-latest-m
100+
runs-on: ubuntu-latest
101101

102102
steps:
103103
- name: Checkout

0 commit comments

Comments
 (0)
Please sign in to comment.