25 lines
468 B
YAML
25 lines
468 B
YAML
sudo: false
|
|
language: node_js
|
|
before_install:
|
|
- |
|
|
[ "$TRAVIS_COMMIT_RANGE" = "" ] || git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(doc))/' || {
|
|
echo "Only docs were updated, stopping build process."
|
|
exit
|
|
}
|
|
node_js:
|
|
- "6"
|
|
- "5"
|
|
- "4"
|
|
- "0.12"
|
|
|
|
before_script: make bootstrap-babel
|
|
|
|
script:
|
|
- npm run test_cov
|
|
- make test-babel
|
|
|
|
after_success: npm run coverage
|
|
|
|
notifications:
|
|
slack: babeljs:5Wy4QX13KVkGy9CnU0rmvgeK
|