https://github.com/twbs/bootstrap
Raw File
Tip revision: 68b0d231a13201eb14acd3dc84e51543d16e5f7e authored by XhmikosR on 13 February 2019, 14:23:41 UTC
Dist
Tip revision: 68b0d23
.travis.yml
language: node_js
git:
  depth: 3
node_js:
  - "6"
env:
  matrix:
    - TWBS_TEST=core
    - TWBS_TEST=validate-html
    - TWBS_TEST=browserstack
before_install:
  - "export TRAVIS_COMMIT_MSG=\"$(git log --format=%B --no-merges -n 1)\""
  - echo "$TRAVIS_COMMIT_MSG" | grep '\[skip validator\]'; export TWBS_DO_VALIDATOR=$?; true
  - echo "$TRAVIS_COMMIT_MSG" | grep '\[skip browserstack\]'; export TWBS_DO_BROWSERSTACK=$?; true
install:
  - bundle install --deployment --jobs=3 --retry=3 --clean
  - npm install
cache:
  directories:
    - node_modules
    - vendor/bundle
notifications:
  email: false
back to top