Skip to content

Commit 15618ef

Browse files
committed
add runs-on fix needs: Prepare
1 parent 13c7a2e commit 15618ef

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/checks.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
run: xargs npm run lint:strict < changed_files.txt
7171

7272
Upload:
73-
needs: Prepare
73+
needs: [Prepare]
74+
runs-on: ubuntu-latest
7475
steps:
7576
- uses: actions/checkout@v4
7677
with:
@@ -79,7 +80,7 @@ jobs:
7980
uses: ./.github/workflows/remote_bindings.yml
8081

8182
Build-And-Test-Server:
82-
needs: Prepare
83+
needs: [Prepare]
8384
timeout-minutes: 210
8485
runs-on: ubuntu-latest
8586
strategy:
@@ -117,7 +118,7 @@ jobs:
117118
cat profiling.md >> $GITHUB_STEP_SUMMARY
118119
119120
Run-Unit-Tests:
120-
needs: Prepare
121+
needs: [Prepare]
121122
name: Run unit tests parallel
122123
timeout-minutes: 210
123124
runs-on: ubuntu-latest
@@ -194,7 +195,7 @@ jobs:
194195
strategy:
195196
matrix:
196197
node: [20]
197-
needs: Prepare
198+
needs: [Prepare]
198199
timeout-minutes: 90
199200
runs-on: ubuntu-latest
200201
steps:
@@ -245,7 +246,7 @@ jobs:
245246
retention-days: 30
246247

247248
master:
248-
needs: Prepare
249+
needs: [Prepare]
249250
timeout-minutes: 45
250251
runs-on: ubuntu-latest
251252
services:
@@ -273,7 +274,7 @@ jobs:
273274
mina-branch-name: master
274275

275276
compatible:
276-
needs: Prepare
277+
needs: [Prepare]
277278
timeout-minutes: 45
278279
runs-on: ubuntu-latest
279280
services:

0 commit comments

Comments
 (0)