We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9865e7f commit da0a2e5Copy full SHA for da0a2e5
1 file changed
.github/workflows/tests-pr.yml
@@ -202,6 +202,17 @@ jobs:
202
VITEST_MIN_THREADS: "1"
203
VITEST_MAX_THREADS: "4"
204
205
+ unit-tests-gate:
206
+ name: "Unit tests"
207
+ needs: unit-tests
208
+ if: always()
209
+ runs-on: ubuntu-latest
210
+ timeout-minutes: 5
211
+ steps:
212
+ - name: Verify all unit tests passed
213
+ if: needs.unit-tests.result != 'success'
214
+ run: exit 1
215
+
216
test-coverage-shard:
217
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
218
name: "Test Coverage (shard ${{ matrix.shard }})"
0 commit comments