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 96069c4 commit c94ff86Copy full SHA for c94ff86
.github/workflows/test-changed-firestore.yml
@@ -182,3 +182,15 @@ jobs:
182
run: cd packages/firestore && xvfb-run yarn run ${{ matrix.test-name }}
183
env:
184
BROWSERS: 'Firefox'
185
+
186
+ # A job that fails if any required job in the test matrix fails,
187
+ # to be used as a required check for merging.
188
+ check-required-tests:
189
+ runs-on: ubuntu-latest
190
+ if: always()
191
+ name: Check all required tests results
192
+ needs: [test-chrome, compat-test-chrome]
193
+ steps:
194
+ - name: Check test matrix
195
+ if: needs.test-chrome.result == 'failure' || needs.compat-test-chrome.result == 'failure'
196
+ run: exit 1
0 commit comments