| 123456789101112131415161718 |
- language: node_js
- node_js:
- - "12"
- script:
- - npm run build
- env:
- global:
- - COMMIT_AUTHOR_EMAIL: "[email protected]"
- 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: out
- on:
- branch: master
|