diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0bf93c9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +dist: precise +language: node_js +node_js: + - "stable" +cache: + directories: + - node_modules +branches: + only: + - master + - develop +before_script: + - npm install +script: + - npm test + - npm run build +deploy: + provider: pages + skip_cleanup: true + github_token: $github_token + local_dir: build + on: + branch: master \ No newline at end of file