21 lines
275 B
YAML
21 lines
275 B
YAML
|
|
language: node_js
|
||
|
|
node_js: stable
|
||
|
|
cache:
|
||
|
|
directories:
|
||
|
|
- "node_modules"
|
||
|
|
|
||
|
|
branches:
|
||
|
|
only:
|
||
|
|
- master
|
||
|
|
|
||
|
|
script:
|
||
|
|
- npm run build
|
||
|
|
|
||
|
|
deploy:
|
||
|
|
provider: pages
|
||
|
|
local-dir: dist
|
||
|
|
skip-cleanup: true
|
||
|
|
github-token: $GITHUB_TOKEN
|
||
|
|
keep-history: true
|
||
|
|
on:
|
||
|
|
branch: master
|