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 f1e02e9 commit b593f31Copy full SHA for b593f31
.travis.yml
@@ -3,3 +3,6 @@ language: node_js
3
node_js:
4
- node
5
script: npm run travis
6
+after_success:
7
+ - cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
8
+ - rm -rf ./coverage
package.json
@@ -12,6 +12,7 @@
12
"range-parser": "^1.0.3"
13
},
14
"devDependencies": {
15
+ "codecov.io": "^0.1.6",
16
"eslint": "^3.4.0",
17
"express": "^4.14.0",
18
"file-loader": "^0.9.0",
@@ -43,6 +44,6 @@
43
44
"test": "mocha --full-trace --check-leaks",
45
"beautify": "npm run lint -- --fix",
46
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
- "travis": "npm run cover && npm run lint"
47
+ "travis": "npm run cover -- --report lcovonly && npm run lint"
48
}
49
0 commit comments