.travis.yml 302 Bytes
Newer Older
葛齐林's avatar
葛齐林 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
language: node_js
node_js: stable
cache:
  directories:
    - "node_modules"

branches:
  only:
  - master

script:
  - npm run build:travis

deploy:
  provider: pages
  local-dir: dist
  skip-cleanup: true
  github-token: $GITHUB_TOKEN
  keep-history: true
  on:
    branch: master