Permalink
Fetching contributors…
Cannot retrieve contributors at this time
12 lines (10 sloc) 318 Bytes
sudo: required
install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- npm install -g standard
language: node_js
node_js:
- "6.2.0"