Skip to content

Commit 3108d94

Browse files
Update checks.yml to run on shipfox
1 parent 0e85014 commit 3108d94

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/checks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
detect-modules:
2323
name: Detect packages to check
24-
runs-on: ubuntu-22.04
24+
runs-on: shipfox-2vcpu-ubuntu-2404
2525
outputs:
2626
modules: ${{ steps.set-modified-modules.outputs.modules }}
2727
modules_count: ${{ steps.set-modified-modules-count.outputs.modules_count }}
@@ -53,15 +53,15 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
56-
runs-on: ubuntu-22.04
56+
runs-on: shipfox-2vcpu-ubuntu-2404
5757
steps:
5858
- name: Code checkout
5959
uses: actions/checkout@v5
6060
- name: Install Node and Dependencies
6161
id: npm-install-modules
6262
uses: ./.github/actions/npm-setup
6363
with:
64-
runner: ubuntu-22.04
64+
runner: shipfox-2vcpu-ubuntu-2404
6565
node-version: 24.x
6666
workspace: "${{ matrix.module }}"
6767
- name: Code linting
@@ -79,15 +79,15 @@ jobs:
7979
fail-fast: false
8080
matrix:
8181
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
82-
runs-on: ubuntu-22.04
82+
runs-on: shipfox-2vcpu-ubuntu-2404
8383
steps:
8484
- name: Code checkout
8585
uses: actions/checkout@v5
8686
- name: Install Node and Dependencies
8787
id: npm-install
8888
uses: ./.github/actions/npm-setup
8989
with:
90-
runner: ubuntu-22.04
90+
runner: shipfox-2vcpu-ubuntu-2404
9191
node-version: 24.x
9292
workspace: "${{ matrix.module }}"
9393
- name: Compile
@@ -108,14 +108,14 @@ jobs:
108108
fail-fast: false
109109
matrix:
110110
node-version: [20.x, 22.x, 24.x]
111-
runs-on: ubuntu-22.04
111+
runs-on: shipfox-2vcpu-ubuntu-2404
112112
steps:
113113
- name: Code checkout
114114
uses: actions/checkout@v5
115115
- name: Install Node ${{ matrix.node-version }} and Dependencies
116116
uses: ./.github/actions/npm-setup
117117
with:
118-
runner: ubuntu-22.04
118+
runner: shipfox-2vcpu-ubuntu-2404
119119
node-version: ${{ matrix.node-version }}
120120
workspace: "testcontainers"
121121
- name: Build testcontainers
@@ -147,7 +147,7 @@ jobs:
147147
container-runtime: [docker, podman]
148148
uses: ./.github/workflows/test-template.yml
149149
with:
150-
runner: ubuntu-22.04
150+
runner: shipfox-2vcpu-ubuntu-2404
151151
node-version: ${{ matrix.node-version }}
152152
container-runtime: ${{ matrix.container-runtime }}
153153
workspace: "${{ matrix.module }}"
@@ -161,7 +161,7 @@ jobs:
161161
- compile
162162
- smoke-test
163163
- test
164-
runs-on: ubuntu-22.04
164+
runs-on: shipfox-2vcpu-ubuntu-2404
165165
steps:
166166
- name: Check if any jobs failed
167167
if: ${{ failure() || cancelled() }}

0 commit comments

Comments
 (0)