17 lines
221 B
YAML
17 lines
221 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
- "0.12"
|
|
- "4.0"
|
|
- "4.1"
|
|
- "4.2"
|
|
- "5"
|
|
- "iojs"
|
|
before_install:
|
|
- npm install -g npm
|
|
before_script:
|
|
- npm install -g grunt-cli
|
|
matrix:
|
|
fast_finish: true
|