Skip to content

Commit c1abb39

Browse files
committed
chore: add a closing node that will be required by GH
1 parent 46b9f55 commit c1abb39

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,19 @@ jobs:
124124
node-version: ${{ matrix.node-version }}
125125
container-runtime: ${{ matrix.container-runtime }}
126126
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

Comments
 (0)