twbs--bootstrap/.travis.yml

23 lines
611 B
YAML
Raw Normal View History

sudo: required
language: node_js
git:
depth: 3
node_js:
- "6"
2017-07-15 02:17:32 -04:00
- "8"
2013-12-13 06:03:15 -05:00
install:
- bundle install --deployment --jobs=3 --retry=3 --clean
2015-08-19 16:08:26 -04:00
- npm install
2018-06-23 18:23:47 -04:00
script:
- npm test
- if [[ "$TRAVIS_NODE_VERSION" = "8" ]]; then npm run check-broken-links; fi
- if [[ "$TRAVIS_NODE_VERSION" = "8" && "$TRAVIS_EVENT_TYPE" = "push" && ! `git log --format=%B --no-merges -n 1 | grep '\[skip browser\]'` ]]; then npm run js-test-cloud; fi
after_success:
- if [[ "$TRAVIS_NODE_VERSION" = "8" ]]; then npm run coveralls; fi
cache:
directories:
- node_modules
- vendor/bundle
notifications:
email: false