17 lines
201 B
YAML
17 lines
201 B
YAML
|
language: node_js
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
node_js:
|
||
|
- "6"
|
||
|
- "5"
|
||
|
- "4"
|
||
|
- "0.12"
|
||
|
- "0.10"
|
||
|
before_install:
|
||
|
- npm update -g npm
|
||
|
matrix:
|
||
|
fast_finish: true
|
||
|
allow_failures:
|
||
|
- node_js: "0.10"
|