Skip to content

Commit e93336e

Browse files
committed
avoid large-js because it does not exist
1 parent 4787ca3 commit e93336e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ jobs:
233233
job_build:
234234
name: Build
235235
needs: [job_get_metadata, job_install_deps]
236-
runs-on: ubuntu-22.04-large-js
236+
runs-on: ubuntu-22.04
237237
timeout-minutes: 30
238238
if: |
239239
(needs.job_get_metadata.outputs.changed_any_code == 'true' || github.event_name != 'pull_request')
@@ -640,7 +640,7 @@ jobs:
640640
name: Playwright (${{ matrix.bundle }}${{ matrix.shard && format(' {0}/{1}', matrix.shard, matrix.shards) || ''}}) Tests
641641
needs: [job_get_metadata, job_build]
642642
if: needs.job_get_metadata.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request'
643-
runs-on: ubuntu-22.04-large-js
643+
runs-on: ubuntu-22.04
644644
timeout-minutes: 25
645645
strategy:
646646
fail-fast: false
@@ -790,7 +790,7 @@ jobs:
790790
name: Browser (${{ matrix.browser }}) Tests
791791
needs: [job_get_metadata, job_build]
792792
if: needs.job_get_metadata.outputs.changed_browser == 'true' || github.event_name != 'pull_request'
793-
runs-on: ubuntu-22.04-large-js
793+
runs-on: ubuntu-22.04
794794
timeout-minutes: 20
795795
strategy:
796796
fail-fast: false
@@ -969,7 +969,7 @@ jobs:
969969
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
970970
github.actor != 'dependabot[bot]'
971971
needs: [job_get_metadata, job_build, job_compile_bindings_profiling_node]
972-
runs-on: ubuntu-22.04-large-js
972+
runs-on: ubuntu-22.04
973973
timeout-minutes: 15
974974
steps:
975975
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})

.github/workflows/flaky-test-detector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
jobs:
2525
flaky-detector:
26-
runs-on: ubuntu-22.04-large-js
26+
runs-on: ubuntu-22.04
2727
timeout-minutes: 60
2828
name: 'Check tests for flakiness'
2929
# Also skip if PR is from master -> develop

0 commit comments

Comments
 (0)