From aae579c65073e4bf5a7ad5225f384af27cb2840b Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Sat, 24 Aug 2019 19:06:36 +0530 Subject: [PATCH] Update .travis.yml --- .travis.yml | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a533aa377..8192886ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,30 @@ notifications: webhooks: https://www.travisbuddy.com env: - MY_VAR=EverythignIsAwesome -- NODE_ENV=TEST \ No newline at end of file +- NODE_ENV=TESTlanguage: node_js +node_js: + - "8" + +cache: + directories: + - "node_modules" + +branches: + only: + - master + +install: + - npm install + - npm run generate + +script: + - echo "Skipping tests" + +deploy: + provider: pages + skip-cleanup: true + github-token: $GITHUB_ACCESS_TOKEN # Set in travis-ci.org dashboard, marked secure https://docs.travis-ci.com/user/deployment/pages/#Setting-the-GitHub-token + target-branch: gh-pages + local-dir: dist + on: + branch: master