-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package): Adds Semantic Release, Greenkeeper, and NYC.
Merges PR #28
- Loading branch information
Showing
4 changed files
with
4,624 additions
and
205 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 |
---|---|---|
@@ -1,11 +1,24 @@ | ||
language: node_js | ||
node_js: node | ||
sudo: false | ||
|
||
notifications: | ||
email: false | ||
|
||
before_install: | ||
- npm install -g greenkeeper-lockfile@1 | ||
|
||
before_script: | ||
- greenkeeper-lockfile-update | ||
- npm prune | ||
|
||
script: | ||
- npm test | ||
- npm run build | ||
- mkdir coverage | ||
- npm run cover | ||
- npm run codecov | ||
- npm run lint | ||
- npm run duplication-limit | ||
- npm run duplication -- --limit=0.01 | ||
|
||
after_success: | ||
- npm prune --production | ||
- npm run semantic-release | ||
- greenkeeper-lockfile-upload |
Oops, something went wrong.