31 lines
488 B
YAML
31 lines
488 B
YAML
|
sudo: false
|
||
|
|
||
|
language: node_js
|
||
|
|
||
|
node_js:
|
||
|
- "6"
|
||
|
|
||
|
cache:
|
||
|
directories:
|
||
|
- node_modules
|
||
|
|
||
|
install:
|
||
|
- npm install
|
||
|
|
||
|
script:
|
||
|
- npm run build
|
||
|
- npm run test
|
||
|
- SAUCELABS=true COVERAGE=false FLAKEY=false PERFORMANCE=false npm run test:karma
|
||
|
|
||
|
# Necessary to compile native modules for io.js v3 or Node.js v4
|
||
|
env:
|
||
|
- CXX=g++-4.8
|
||
|
|
||
|
# Necessary to compile native modules for io.js v3 or Node.js v4
|
||
|
addons:
|
||
|
apt:
|
||
|
sources:
|
||
|
- ubuntu-toolchain-r-test
|
||
|
packages:
|
||
|
- g++-4.8
|