Skip to content

Commit ad5296b

Browse files
committed
chore: add a closing node that will be required by GH
1 parent 7afe848 commit ad5296b

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
@@ -126,3 +126,19 @@ jobs:
126126
node-version: ${{ matrix.node-version }}
127127
container-runtime: ${{ matrix.container-runtime }}
128128
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

Comments
 (0)