UNPKG

584 BYAMLView Raw
1language: node_js
2
3node_js:
4 - "8"
5
6env:
7 global:
8 - GIT_NAME: Travis CI
9 - GIT_EMAIL: mail@victorquinn.com
10 - GITHUB_REPO: chancejs/chancejs
11 - GIT_SOURCE: _docpress
12
13before_script:
14 - npm install -g gulp-cli
15
16script:
17 - gulp travis
18 - ./node_modules/.bin/docpress build
19
20after_script:
21 - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
22
23after_success:
24 - './node_modules/.bin/nyc ava'
25 - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then ./node_modules/.bin/git-update-ghpages -e; fi
26
27sudo: false