Skip to content

Commit 9863e10

Browse files
Add code coverage (#97)
* Enhance Jest configuration and CI workflow for improved coverage reporting - Added coverage collection settings in jest.config.mjs to include TypeScript files while excluding specific patterns. - Updated GitHub Actions workflow to run tests with coverage and added a step to upload coverage reports to Codecov. - Included badges in README.md for build status and Codecov coverage tracking. * Update collectCoverageFrom * Remove continue-on-error * Update CI workflow to run on push to main and allow manual dispatch
1 parent 9f51679 commit 9863e10

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/pull_request.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Continuous Integration
22

3-
on: pull_request
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
workflow_dispatch:
49

510
jobs:
611
linter:

0 commit comments

Comments
 (0)