From 6b9a0028fe96cf2fb817de421cf3984173ecae52 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 9 Nov 2019 16:22:39 +0100 Subject: [PATCH] add autodeploy travis yaml --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e7379f9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: node_js +node_js: + - "10" +install: + - yarn +script: + - yarn run build +deploy: + provider: pages + skip-cleanup: true + github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable + keep-history: true + local-dir: build + on: + branch: master