-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from buehler/develop
Release
- Loading branch information
Showing
24 changed files
with
556 additions
and
152 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
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,29 +1,38 @@ | ||
sudo: false | ||
language: node_js | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
stages: | ||
- name: test | ||
if: tag IS blank | ||
- name: deploy | ||
if: branch = master AND type != pull_request | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
notifications: | ||
email: false | ||
|
||
node_js: | ||
- '8' | ||
- '7' | ||
- '6' | ||
|
||
before_script: | ||
- npm prune | ||
|
||
after_success: | ||
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls | ||
|
||
after_script: | ||
- npm install | ||
- npm run build | ||
- npm run semantic-release | ||
|
||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
jobs: | ||
include: | ||
- stage: test | ||
node_js: '9' | ||
after_success: | ||
- npm i -g codecov | ||
- codecov | ||
- stage: test | ||
node_js: '8' | ||
after_success: | ||
- npm i -g codecov | ||
- codecov | ||
- stage: deploy | ||
node_js: '9' | ||
script: npm run typedoc | ||
deploy: | ||
provider: pages | ||
skip_cleanup: true | ||
github_token: $GH_TOKEN | ||
local_dir: ./docs | ||
- stage: deploy | ||
node_js: '9' | ||
before_script: npm run build | ||
script: 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
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
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
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
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
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
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
Oops, something went wrong.