We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb03e65 commit 6be18d8Copy full SHA for 6be18d8
3 files changed
.github/workflows/ci.yaml
@@ -68,6 +68,8 @@ jobs:
68
- run: npm test
69
- uses: codecov/codecov-action@v5
70
if: ${{ matrix.node-version == 22 }}
71
+ - uses: codecov/test-results-action@v1
72
+ if: ${{ matrix.node-version == 22 }}
73
74
release:
75
runs-on: ubuntu-latest
.gitignore
@@ -4,3 +4,4 @@ node_modules/
4
*.log
5
*.tsbuildinfo
6
*.tgz
7
+*.xml
package.json
@@ -31,7 +31,7 @@
31
"scripts": {
32
"prepack": "tsc --build",
33
"pretest": "tsc --build",
34
- "test": "c8 node --test"
+ "test": "c8 node --test --enable-source-maps --test-reporter junit --test-reporter-destination junit.xml --test-reporter spec --test-reporter-destination stdout"
35
},
36
"dependencies": {
37
"@types/mdast": "^4.0.0",
0 commit comments