Skip to content

Commit bf85289

Browse files
aSemyhsz
authored andcommitted
make integration tests depend on unit tests, so the entire workflow fails faster and doesn't clog up the pipeline
1 parent 41e0903 commit bf85289

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
integrationTests:
3232
name: Integration Tests
33-
needs: gradleValidation
33+
needs: [ gradleValidation, unitTests ]
3434
uses: ./.github/workflows/reusable-integrationTests.yml
3535

3636
# integrationTestsEAP:

.github/workflows/release-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
integrationTests:
2929
if: ${{ !inputs.skipTests }}
3030
name: Integration Tests
31-
needs: gradleValidation
31+
needs: [ gradleValidation, unitTests ]
3232
uses: ./.github/workflows/reusable-integrationTests.yml
3333

3434
# integrationTestsEAP:

0 commit comments

Comments
 (0)