You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Overview
Integrates Codecov into the CI pipeline to automatically track code
coverage on every PR and commit.
## Changes
- **Unit Tests job**: Added coverage generation with `bun test
--coverage` and upload to Codecov with `unit-tests` flag
- **Integration Tests job**: Added coverage generation with `jest
--coverage` and upload to Codecov with `integration-tests` flag
- Renamed "Test" job to "Unit Tests" for clarity
- Set `fail_ci_if_error: false` on uploads to avoid blocking PRs if
Codecov has issues
## How It Works
Codecov automatically merges the two coverage reports into a unified
view:
- See overall coverage across both test types
- See per-flag coverage (unit vs integration) to understand which tests
cover which code
- Coverage reports appear as PR comments
- Historical trends tracked over time
## Setup Required
The `CODECOV_TOKEN` secret has already been configured in GitHub Actions
settings.
_Generated with `cmux`_
0 commit comments