Skip to content

Commit df7454a

Browse files
committed
fix: add coverage info to pr check
1 parent 11e47fb commit df7454a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- run: npm ci
2020
- run: npm run format:check
2121
- run: npm run copyright:check
22-
- run: xvfb-run -a npm run test
22+
- run: xvfb-run -a npm run coverage
2323
if: runner.os == 'Linux'
2424
- run: npx vsce package

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@
601601
"format": "prettier --write .",
602602
"pretest": "npm run compile && tsc -p ./client",
603603
"test": "node ./client/out/test/runTest.js",
604-
"coverage": "c8 --clean --check-coverage --lines 75 npm run test",
604+
"coverage": "c8 --clean --lines 75 npm run test",
605605
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
606606
},
607607
"devDependencies": {

0 commit comments

Comments
 (0)