We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09bad50 commit ab99f94Copy full SHA for ab99f94
2 files changed
.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
28
if: github.actor != 'dependabot[bot]'
29
with:
30
fail_ci_if_error: true
31
- verbose: false
+ verbose: true
32
token: ${{ secrets.CODECOV_TOKEN }}
33
env:
34
CI: true
package.json
@@ -104,5 +104,22 @@
104
"mdast-util-to-markdown": "^2.1.2",
105
"micromark-extension-frontmatter": "^2.0.0",
106
"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
+ ]
124
}
125
0 commit comments