From 4fada604330c2c4b48bf4d24ac70b25a868067a5 Mon Sep 17 00:00:00 2001 From: abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com> Date: Sat, 16 Nov 2019 13:28:53 +0530 Subject: [PATCH] chore: add travis config --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2a7fb29 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: node_js +cache: + directories: + - ~/.npm +node_js: + - 12 +git: + depth: 3 +script: + - yarn run build +deploy: + provider: pages + skip-cleanup: true + keep-history: true + github-token: $GITHUB_TOKEN + local-dir: extension + target-branch: extension + on: + branch: master