21 lines
337 B
YAML
21 lines
337 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
install: npm install
|
|
before_script:
|
|
- npm install -g grunt
|
|
script:
|
|
- grunt lint
|
|
- grunt test
|
|
- grunt docs
|
|
- grunt node
|
|
- grunt prod
|
|
deploy:
|
|
provider: pages
|
|
skip_cleanup: true
|
|
github_token: $GITHUB_TOKEN
|
|
on:
|
|
branch: master
|
|
local_dir: "build/prod/"
|
|
target_branch: gh-pages
|