Created
November 10, 2017 18:35
-
-
Save andrIvash/aac715ebda59b75b683a29cef683fbbc to your computer and use it in GitHub Desktop.
travis base configuration
This file contains hidden or 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
| language: node_js | |
| node_js: | |
| - 6 | |
| os: linux | |
| install: | |
| - yarn install | |
| script: | |
| - yarn test | |
| - yarn build | |
| cache: | |
| directories: | |
| - node_modules | |
| deploy: | |
| provider: pages | |
| skip_cleanup: true | |
| github_token: $GITHUB_TOKEN | |
| local_dir: build | |
| on: | |
| branch: master | |
| notifications: | |
| email: | |
| on_sucess: never | |
| on_failure: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment