Join our community: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
In .github/codecov.yml, the frontend flag's coverage target is auto (meaning "don't regress from the base commit"), while backend is pinned to 60% and contracts to 70%. A PR that starts from a low-coverage baseline can keep frontend coverage low indefinitely since auto never asks it to reach a fixed floor, unlike the other two flags.
Acceptance criteria
Files to touch
Out of scope
- Raising backend/contracts targets
- Adding new coverage flags
Why this matters
In
.github/codecov.yml, thefrontendflag's coverage target isauto(meaning "don't regress from the base commit"), whilebackendis pinned to 60% andcontractsto 70%. A PR that starts from a low-coverage baseline can keep frontend coverage low indefinitely sinceautonever asks it to reach a fixed floor, unlike the other two flags.Acceptance criteria
frontend.targetin.github/codecov.ymlto a fixed percentage (or explicitly document whyautois intentional)Files to touch
.github/codecov.ymlOut of scope