We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 500742f commit 89737fdCopy full SHA for 89737fd
1 file changed
.github/workflows/test.yml
@@ -204,3 +204,14 @@ jobs:
204
name: playwright-a11y-result-${{ strategy.job-index }}-${{ github.run_attempt }}
205
path: ${{ github.workspace }}/reports/e2e/a11y-report.json
206
retention-days: 7
207
+
208
+ check-tests-passed:
209
+ needs: [e2e-playwright]
210
+ runs-on: ubuntu-latest
211
+ if: always()
212
+ steps:
213
+ - name: Check all test jobs passed
214
+ run: |
215
+ if [[ "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}" == "true" ]]; then
216
+ exit 1
217
+ fi
0 commit comments