0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/.travis.yml

34 lines
741 B
YAML
Raw Permalink Normal View History

sudo: required
2016-02-19 11:27:33 +02:00
dist: trusty
addons:
chrome: stable
language: node_js
git:
depth: 3
node_js:
- "6"
2017-07-15 06:17:32 +00:00
- "8"
2013-12-13 03:03:15 -08:00
before_install:
2017-07-15 06:17:32 +00:00
- if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi
2013-12-13 03:03:15 -08:00
install:
- bundle install --deployment --jobs=3 --retry=3
2015-08-19 13:08:26 -07:00
- npm install
2018-06-24 01:23:47 +03:00
script:
- npm test
- if [ "$TRAVIS_NODE_VERSION" = "8" ]; then npm run check-broken-links; fi
after_success:
- if [ "$TRAVIS_NODE_VERSION" = "8" ]; then npm run coveralls; fi
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
cache:
directories:
- node_modules
- vendor/bundle