sudo: false language: node_js env: - CXX="g++-4.8" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - gcc-4.8 matrix: allow_failures: - node_js: "4.1.0" before_install: - npm install -g npm@~1.4.18 # node_js 4.1.0 is brand new node_js: - "4.1.0" - "4.0.0" - "0.12" - "0.10" script: - istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage before_script: - npm install -g istanbul - npm install coveralls