Skip to content

Commit ab99f94

Browse files
committed
ci: update coverage settings
1 parent 09bad50 commit ab99f94

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
if: github.actor != 'dependabot[bot]'
2929
with:
3030
fail_ci_if_error: true
31-
verbose: false
31+
verbose: true
3232
token: ${{ secrets.CODECOV_TOKEN }}
3333
env:
3434
CI: true

package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,22 @@
104104
"mdast-util-to-markdown": "^2.1.2",
105105
"micromark-extension-frontmatter": "^2.0.0",
106106
"yaml": "^2.8.1"
107+
},
108+
"c8": {
109+
"exclude": [
110+
"dist/**",
111+
"coverage/**",
112+
"__tests__/**",
113+
"**/*.test.ts",
114+
"**/*.test.js"
115+
],
116+
"include": [
117+
"src/**"
118+
],
119+
"reporter": [
120+
"text",
121+
"lcov",
122+
"html"
123+
]
107124
}
108125
}

0 commit comments

Comments
 (0)