ci: Add test results upload to Codecov (#14410)

This commit is contained in:
Nora Shapiro
2025-04-04 13:58:08 -07:00
committed by GitHub
parent 33e265aaa8
commit c2d39dfbb7
5 changed files with 24 additions and 1 deletions

View File

@@ -85,6 +85,12 @@ jobs:
if: ${{ !inputs.skipFrontendTests }}
run: pnpm test:frontend
- name: Upload test results to Codecov
if: ${{ !cancelled() }} # Run even if tests fail
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload coverage to Codecov
if: inputs.collectCoverage
uses: codecov/codecov-action@v5.1.2