twbs--bootstrap/.travis.yml

31 lines
736 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" && "$TRAVIS_BUILD_STAGE_NAME" = "Test" ]]; then npm run check-broken-links; fi
after_success:
- if [[ "$TRAVIS_NODE_VERSION" = "8" && "$TRAVIS_BUILD_STAGE_NAME" = "Test" ]]; then npm run coveralls; fi
stages:
- test
- name: browser
if: type = push
jobs:
include:
- stage: browser
node_js: 8
2018-09-14 16:31:06 -04:00
script: if ! git log --format=%B --no-merges -n 1 | grep '\[skip browser\]'; then npm run js-test-cloud; fi
cache:
directories:
- node_modules
- vendor/bundle
notifications:
email: false