23 lines
464 B
YAML
23 lines
464 B
YAML
|
language: node_js
|
||
|
|
||
|
node_js: 0.10.33
|
||
|
|
||
|
sudo: false # use new container infrastructure
|
||
|
|
||
|
# sass setup
|
||
|
cache: bundler # speeds up bundler
|
||
|
rvm:
|
||
|
- 2.2.2
|
||
|
|
||
|
before_script:
|
||
|
- npm install -g grunt-cli
|
||
|
- npm install -g bower
|
||
|
#- export DISPLAY=:99.0
|
||
|
#- sh -e /etc/init.d/xvfb start
|
||
|
# Install meteor
|
||
|
#- curl https://install.meteor.com | /bin/sh
|
||
|
# Install spacejam, Meteor's CI helper
|
||
|
#- npm install -g spacejam
|
||
|
|
||
|
script: bower install && bundle install && grunt
|