Skip to content

Commit 9e5d593

Browse files
authored
Merge pull request #221 from synonymdev/test/e2e-status
e2e-status for branch protection
2 parents 7271b55 + c708300 commit 9e5d593

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,17 @@ jobs:
236236
working-directory: bitkit-e2e-tests
237237
run: |
238238
cd docker && docker compose down -v || true
239+
240+
e2e-status:
241+
name: e2e-status
242+
runs-on: ubuntu-latest
243+
needs: [e2e-tests]
244+
if: always()
245+
steps:
246+
- name: Verify all E2E shards succeeded
247+
run: |
248+
if [ "${{ needs.e2e-tests.result }}" != "success" ]; then
249+
echo "❌ Some E2E shards failed."
250+
exit 1
251+
fi
252+
echo "✅ All E2E shards passed!"

0 commit comments

Comments
 (0)