19 lines
324 B
YAML
19 lines
324 B
YAML
language: node_js
|
|
node_js: node
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^v\d++(\.\d+)?+(\.\d+)?+(\.\d+)?$/
|
|
script:
|
|
- npm run build
|
|
- npm run test
|
|
- npm run build
|
|
- npm run build:doc
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN
|
|
keep-history: true
|
|
local-dir: dist/doc
|
|
on:
|
|
tags: true |