swh:1:snp:3af1a03cd091600016317ad7197cfc7dfd1319c7
Raw File
Tip revision: 31adaee9aedd3aef4531c4e7dc36cc55c8ab210f authored by Andreas Stuhlmueller on 12 May 2018, 22:45:33 UTC
0.9.12
Tip revision: 31adaee
.travis.yml
language: node_js

node_js:
  - "4"
  - "5"
  - "6"
  - "7"

env:
  - TASK=default

matrix:
  include:
    - node_js: "7"
      env: TASK=travis-phantomjs

install:
  - npm install
  - if [ $TRAVIS_NODE_VERSION = 4 ]; then npm run-script prepare; fi
  - if [ $TRAVIS_NODE_VERSION = 5 ]; then npm run-script prepare; fi
  - if [ $TRAVIS_NODE_VERSION = 6 ]; then npm run-script prepare; fi
  - npm install -g nodeunit grunt-cli
  - if [ $TASK = travis-phantomjs ]; then npm install -g browserify uglify-js; fi

script:
  - grunt $TASK

sudo: required
dist: trusty

notifications:
  slack: cocolab-stanford:X2Ebs0qIMVUidJBD1xZd2XU1
back to top