Created
January 9, 2019 01:25
-
-
Save kcmr/5a117f878585408768ee1767974fbeb7 to your computer and use it in GitHub Desktop.
CI/CD con Travis en Github (Medium post)
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: "8" | |
cache: npm | |
script: npm run build -- -prod | |
deploy: | |
provider: pages | |
skip_cleanup: true | |
github-token: $GITHUB_TOKEN | |
local-dir: dist | |
verbose: true | |
on: | |
branch: master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment