-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(semantic-release): implement semantic release
installed semantic-release package, added commit convential commit analyzer, updated travis yaml to run semantic release after build success fix(travis): add node 8 to travis configuration fix(dependency): Missing @storybook/channels dependency that was causing build failures on Node 8
- Loading branch information
1 parent
c408b0d
commit 8de3944
Showing
2 changed files
with
26 additions
and
1 deletion.
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,25 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- 8 | ||
- 6 | ||
|
||
cache: | ||
directories: | ||
- ~/.npm | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- [email protected] | ||
- [email protected] | ||
on_success: always | ||
on_failure: always | ||
|
||
script: | ||
- npm run lint | ||
- npm run test | ||
|
||
after_script: | ||
- npm run coveralls | ||
- npm run semantic-release |
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