jmeas/marionette.sliding-view

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: node_js
node_js:
  - "0.10"
script: "gulp coverage"
matrix:
  include:
    - node_js: "0.10"
      env: UNDERSCORE=1.4.4 BACKBONE=1.0 MAINRUN=false
    - node_js: "0.10"
      env: UNDERSCORE=1.5 BACKBONE=1.0 MAINRUN=false
    - node_js: "0.10"
      env: UNDERSCORE=1.6 BACKBONE=1.0 MAINRUN=false
    - node_js: "0.10"
      env: UNDERSCORE=1.4.4 BACKBONE=1.1.0 MAINRUN=false
    - node_js: "0.10"
      env: UNDERSCORE=1.5 BACKBONE=1.1 MAINRUN=false
env: MAINRUN=true
before_install:
  - npm config set ca ""
install:
  - npm install -g grunt-cli
  - npm install
  # Which matrix settings -- otherwise default
  - if [[ $MAINRUN == false ]]; then npm install backbone@$BACKBONE; fi
  - if [[ $MAINRUN == false ]]; then npm install underscore@$UNDERSCORE; fi
after_success:
  - if [[ $MAINRUN == true ]]; then npm install -g codeclimate-test-reporter; fi
  - if [[ $MAINRUN == true ]]; then codeclimate < coverage/lcov.info; fi