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 21e38c2 commit 01574f9Copy full SHA for 01574f9
.github/workflows/e2e.yml
@@ -205,3 +205,17 @@ jobs:
205
- name: Dump docker logs on failure (${{ matrix.shard.name }})
206
if: failure()
207
uses: jwalton/gh-docker-logs@v2
208
+
209
+ e2e-status:
210
+ name: e2e-status
211
+ runs-on: ubuntu-latest
212
+ needs: [e2e-tests]
213
+ if: always()
214
+ steps:
215
+ - name: Verify all E2E shards succeeded
216
+ run: |
217
+ if [ "${{ needs.e2e-tests.result }}" != "success" ]; then
218
+ echo "❌ Some E2E shards failed."
219
+ exit 1
220
+ fi
221
+ echo "✅ All E2E shards passed!"
0 commit comments