2018-01-09 08:34:24 -05:00
|
|
|
sudo: required
|
2016-02-19 04:27:33 -05:00
|
|
|
dist: trusty
|
2018-01-09 08:34:24 -05:00
|
|
|
addons:
|
|
|
|
chrome: stable
|
2012-04-19 18:32:41 -04:00
|
|
|
language: node_js
|
2014-09-01 04:18:49 -04:00
|
|
|
git:
|
2016-12-04 19:40:27 -05:00
|
|
|
depth: 3
|
2012-04-19 18:32:41 -04:00
|
|
|
node_js:
|
2017-09-27 09:47:38 -04:00
|
|
|
- "6"
|
2017-07-15 02:17:32 -04:00
|
|
|
- "8"
|
2013-12-13 06:03:15 -05:00
|
|
|
before_install:
|
2017-07-15 02:17:32 -04:00
|
|
|
- if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi
|
2013-12-13 06:03:15 -05:00
|
|
|
install:
|
2016-12-04 19:40:27 -05:00
|
|
|
- bundle install --deployment --jobs=3 --retry=3
|
2015-08-19 16:08:26 -04:00
|
|
|
- npm install
|
2016-12-04 19:40:27 -05:00
|
|
|
after_success:
|
2017-04-19 07:59:12 -04:00
|
|
|
- if [ "$TRAVIS_REPO_SLUG" = twbs-savage/bootstrap ]; then npm run docs-upload-preview; fi
|
2017-09-17 03:23:19 -04:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- name: browser
|
|
|
|
if: type = push
|
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- stage: browser
|
|
|
|
node_js: 8
|
|
|
|
script: if ! git log --format=%B --no-merges -n 1 | grep '\[skip browser\]'; then npm test && npm run js-test-cloud; fi
|
2016-01-14 17:14:34 -05:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
- vendor/bundle
|
2014-05-08 02:37:41 -04:00
|
|
|
notifications:
|
|
|
|
slack: heybb:iz4wwosL0N0EdaX1gvgkU0NH
|
2014-11-19 17:43:45 -05:00
|
|
|
webhooks:
|
|
|
|
- http://savage.twbsapps.com/savage/travis
|