mirror of
https://github.com/alerta/alerta-webui.git
synced 2025-03-17 22:12:37 +00:00
29 lines
355 B
YAML
29 lines
355 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
|
|
cache:
|
|
directories:
|
|
- "node_modules"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
install:
|
|
- npm install
|
|
- npm run build
|
|
|
|
script:
|
|
- npm run lint:nofix
|
|
- npm run test:unit
|
|
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN
|
|
target-branch: gh-pages
|
|
local-dir: dist
|
|
on:
|
|
branch: master
|
|
|