freeCodeCamp/.travis.yml

23 lines
270 B
YAML
Raw Normal View History

language: node_js
node_js:
2016-09-28 22:32:35 +00:00
- '6'
2016-04-03 03:52:52 +00:00
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
cache:
directories:
- node_modules
2016-03-26 16:08:05 +00:00
env:
- CXX=g++-4.8
2016-04-03 03:52:52 +00:00
2016-03-26 16:08:05 +00:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
2016-04-03 03:52:52 +00:00
- g++-4.8
2015-10-02 18:11:28 +00:00
sudo: false