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 0f2a163 commit a388922Copy full SHA for a388922
.github/workflows/tests.yml
@@ -31,7 +31,7 @@ jobs:
31
- name: Install dependencies
32
run: npm install
33
- name: Run tests
34
- run: nyc report --reporter=text-lcov npm run test
+ run: npm run coverage
35
- name: Coveralls Parallel
36
uses: coverallsapp/github-action@master
37
with:
package.json
@@ -5,7 +5,7 @@
5
"main": "main.js",
6
"scripts": {
7
"test": "mocha -r dotenv/config ./test",
8
- "coverage": "nyc npm run test",
+ "coverage": "nyc --reporter=text-summary --reporter=text-lcov npm run test",
9
"start": "node -r dotenv/config main.js"
10
},
11
"repository": {
0 commit comments