-
-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#256] Add sematic-release to package.json
- Loading branch information
1 parent
22174ac
commit 4771549
Showing
3 changed files
with
30 additions
and
19 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 +1 @@ | ||
v6.14.3 | ||
v8.11.3 |
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,22 +1,29 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- "6.14.1" | ||
cache: | ||
directories: | ||
- node_modules | ||
install: | ||
- npm install | ||
- npm install -g codecov | ||
- ~/.npm | ||
notifications: | ||
email: | ||
recipients: | ||
- thedaviddias@gmail.com | ||
node_js: | ||
- '10' | ||
- '9' | ||
- '8' | ||
- '6' | ||
install: | ||
- npm install | ||
- npm install -g codecov | ||
script: | ||
- "grunt" | ||
- istanbul cover ./node_modules/mocha/bin/_mocha --reporter test -- -R spec | ||
- codecov | ||
after_success: | ||
- npm run travis-deploy-once "npm run semantic-release" | ||
branches: | ||
only: | ||
- master | ||
- /^greenkeeper/.*$/ | ||
script: | ||
- "grunt" | ||
- istanbul cover ./node_modules/mocha/bin/_mocha --reporter lcovonly -- -R spec | ||
- codecov | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
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