Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ jobs:
run: bun run test:isolated --coverage --coverage-reporter=lcov --coverage-dir=coverage-isolated
- name: Merge Coverage Reports
run: bun run script/merge-lcov.ts coverage/lcov.info coverage-isolated/lcov.info > coverage/merged.lcov
- name: Make coverage checks informational on release branches
if: github.event_name == 'push'
run: |
sed -i 's/informational: false/informational: true/' codecov.yml
- name: Coverage Report
uses: getsentry/codecov-action@main
with:
Expand Down
Loading
Loading