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