17 lines
295 B
YAML
17 lines
295 B
YAML
|
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: dist
|
||
|
on:
|
||
|
branch: master
|
||
|
script:
|
||
|
- npm run build
|
||
|
|
||
|
branches:
|
||
|
only:
|
||
|
master
|
||
|
|
||
|
script:
|
||
|
- npm run lint
|