perf(ci): suppress passing test logs

This commit is contained in:
saltbo
2026-08-05 11:13:21 -04:00
parent c8dffbb5e9
commit d6be60eb7d
+4 -2
View File
@@ -93,7 +93,9 @@ jobs:
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Run tests with coverage
run: pnpm exec vitest run --project ${{ matrix.project }} --coverage --coverage.reportsDirectory=coverage/${{ matrix.report }} --reporter=default --reporter=blob --outputFile.blob=.vitest-reports/${{ matrix.report }}.blob
# Passing tests produce hundreds of KB of intentional request/error logs.
# Keep captured output for failures without paying to stream every success.
run: pnpm exec vitest run --project ${{ matrix.project }} --silent=passed-only --coverage --coverage.reportsDirectory=coverage/${{ matrix.report }} --reporter=default --reporter=blob --outputFile.blob=.vitest-reports/${{ matrix.report }}.blob
- uses: actions/upload-artifact@v4
if: always()
with:
@@ -116,7 +118,7 @@ jobs:
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: mkdir -p dist
- run: pnpm test:cf
- run: pnpm test:cf --silent=passed-only
coverage:
name: Tests / Coverage