We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b9f55 commit c1abb39Copy full SHA for c1abb39
.github/workflows/test.yml
@@ -124,3 +124,19 @@ jobs:
124
node-version: ${{ matrix.node-version }}
125
container-runtime: ${{ matrix.container-runtime }}
126
workspace: "${{ matrix.module }}"
127
+
128
+ # This job serves as confirmation that all test jobs finished
129
+ end:
130
+ if: ${{ needs.detect-modules.outputs.modules_count > 0 }}
131
+ needs:
132
+ - detect-modules
133
+ - lint
134
+ - smoke-test
135
+ - test
136
+ runs-on: ubuntu-latest
137
+ steps:
138
+ - name: Check if any jobs failed
139
+ if: ${{ failure() || cancelled() }}
140
+ run: exit 1
141
142
+ - run: echo "All tests completed successfully!"
0 commit comments