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 7afe848 commit ad5296bCopy full SHA for ad5296b
.github/workflows/test.yml
@@ -126,3 +126,19 @@ jobs:
126
node-version: ${{ matrix.node-version }}
127
container-runtime: ${{ matrix.container-runtime }}
128
workspace: "${{ matrix.module }}"
129
+
130
+ # This job serves as confirmation that all test jobs finished
131
+ end:
132
+ if: ${{ needs.detect-modules.outputs.modules_count > 0 }}
133
+ needs:
134
+ - detect-modules
135
+ - lint
136
+ - smoke-test
137
+ - test
138
+ runs-on: ubuntu-latest
139
+ steps:
140
+ - name: Check if any jobs failed
141
+ if: ${{ failure() || cancelled() }}
142
+ run: exit 1
143
144
+ - run: echo "All tests completed successfully!"
0 commit comments