swh:1:snp:3af1a03cd091600016317ad7197cfc7dfd1319c7
Raw File
Tip revision: f692e75f4f83df72f2e13c9e5566c44648ef8724 authored by Andreas Stuhlmueller on 11 February 2019, 03:19:32 UTC
0.9.14
Tip revision: f692e75
.travis.yml
language: node_js

node_js:
  - "6"
  - "8"
  - "10"
  - "11"

env:
  - TASK=default

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

install:
  - npm install
  - 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