-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
922a609
commit d1d95a6
Showing
3 changed files
with
174 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,7 @@ script: | |
- npm run ci | ||
- yarn danger ci | ||
|
||
after_success: npm run coverage | ||
|
||
node_js: | ||
- "8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ | |
"scripts": { | ||
"test": "nyc mocha", | ||
"lint": "eslint index.js", | ||
"ci": "npm run lint && npm run test" | ||
"ci": "npm run lint && npm run test", | ||
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov" | ||
}, | ||
"author": "Oleg Koval <[email protected]> (http://wearereasonablepeople.com/)", | ||
"license": "MIT", | ||
|
@@ -18,6 +19,8 @@ | |
}, | ||
"devDependencies": { | ||
"chai": "^4.1.2", | ||
"codecov": "^3.0.0", | ||
"coveralls": "^3.0.0", | ||
"danger": "^3.0.3", | ||
"eslint": "^4.8.0", | ||
"eslint-config-warp": "^2.1.0", | ||
|
Oops, something went wrong.