Skip to content

Commit adae1e8

Browse files
committed
ci: ensure passing build before rest of PR jobs
1 parent 099b5a7 commit adae1e8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pr.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
retention-days: 14
8888

8989
test:
90+
needs: build
9091
runs-on: ubuntu-latest
9192
steps:
9293
- name: Initialize environment
@@ -103,6 +104,7 @@ jobs:
103104
ASPECT_RULES_JS_FROZEN_PNPM_LOCK: '1'
104105

105106
e2e:
107+
needs: build
106108
strategy:
107109
fail-fast: false
108110
matrix:
@@ -124,6 +126,7 @@ jobs:
124126
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
125127

126128
e2e-windows-subset:
129+
needs: build
127130
runs-on: windows-latest
128131
steps:
129132
# Workaround for: https://github.com/bazel-contrib/bazel-lib/issues/968.
@@ -141,6 +144,7 @@ jobs:
141144
run: yarn bazel test --config=e2e //tests/legacy-cli:e2e_node22 --test_filter="tests/basic/{build,rebuild}.ts" --test_arg="--esbuild"
142145

143146
e2e-package-managers:
147+
needs: build
144148
strategy:
145149
fail-fast: false
146150
matrix:
@@ -162,7 +166,7 @@ jobs:
162166
run: yarn bazel test --define=E2E_SHARD_TOTAL=3 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
163167

164168
e2e-snapshots:
165-
needs: analyze
169+
needs: [analyze, build]
166170
if: needs.analyze.outputs.snapshots == 'true'
167171
strategy:
168172
fail-fast: false

0 commit comments

Comments
 (0)