34 lines
397 B
YAML
34 lines
397 B
YAML
sudo: false
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- "7"
|
|
- "6"
|
|
- "4"
|
|
|
|
os:
|
|
- linux
|
|
- macosx
|
|
- windows
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- bower_components
|
|
|
|
before_install:
|
|
- npm install -g grunt-cli
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script: grunt
|
|
|
|
notifications:
|
|
irc:
|
|
channels: "irc.hackint.org#freifunkR"
|
|
channels: "irc.hackint.org#meshviewer"
|
|
nick: ci
|
|
use_notice: true
|