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 bd27aee commit dee2e5bCopy full SHA for dee2e5b
.travis.yml
@@ -1,9 +1,9 @@
1
language: node_js
2
node_js:
3
- - v11
4
- - v10
5
- - v9
6
- - v8
+ - "node"
+ - "lts/*"
+ - 10
+ - 8
7
8
after_success:
9
- - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
+ - npm run coverage
package.json
@@ -21,6 +21,7 @@
21
"version": "conventional-changelog -i changelog.md -s -r 0 && git commit -am \"build: update changelog\"",
22
"prepare": "npm run build",
23
"build": "rimraf lib && babel src -d lib",
24
+ "coverage": "nyc report --reporter=text-lcov | coveralls",
25
"pretest": "npm run build",
26
"test": "nyc ava"
27
},
0 commit comments