We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be8e5c2 commit ab3a2ddCopy full SHA for ab3a2dd
3 files changed
.github/workflows/ci.yml
@@ -32,4 +32,4 @@ jobs:
32
run: npm install
33
34
- name: Run tests
35
- run: npm test
+ run: npm run ci
.gitignore
@@ -1,2 +1,3 @@
1
node_modules
2
yarn.lock
3
+/coverage
package.json
@@ -15,6 +15,7 @@
15
"scripts": {
16
"ava": "ava",
17
"xo": "xo",
18
+ "ci": "npm run xo && c8 ava",
19
"test": "npm run xo && npm run ava"
20
},
21
"main": "index.js",
@@ -31,6 +32,12 @@
31
"local",
"wrapper"
],
+ "c8": {
36
+ "reporter": [
37
+ "lcovonly",
38
+ "text"
39
+ ]
40
+ },
41
"dependencies": {
42
"bin-check": "^4.1.0",
43
"bin-version-check": "^5.0.0",
@@ -39,6 +46,7 @@
46
47
"devDependencies": {
48
"ava": "^4.0.1",
49
+ "c8": "^7.11.0",
50
"executable": "^4.1.1",
51
"nock": "^13.2.2",
44
52
"path-exists": "^5.0.0",
0 commit comments