swh:1:snp:3af1a03cd091600016317ad7197cfc7dfd1319c7
Raw File
Tip revision: 430b433db4997daa00565982d0cc4ce05440a378 authored by Andreas Stuhlmueller on 31 March 2019, 23:26:38 UTC
0.9.15
Tip revision: 430b433
.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