community-app/.travis.yml

18 lines
615 B
YAML
Raw Normal View History

language: node_js
node_js:
2013-12-11 20:25:11 +00:00
- "0.10"
2017-01-24 10:03:32 +00:00
before_install:
2017-02-17 13:48:41 +00:00
- export PHANTOMJS_BIN=/usr/local/phantomjs/bin/phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xjf phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- sudo rm -rf /usr/local/phantomjs/bin/phantomjs
- sudo mv phantomjs /usr/local/phantomjs/bin/phantomjs
2013-12-11 21:12:57 +00:00
before_script:
- npm install -g grunt-cli
2013-12-12 19:34:26 +00:00
- npm install -g bower
2017-01-24 10:03:32 +00:00
- bundle install
2013-12-12 19:30:26 +00:00
- bower install
- grunt prod
notifications:
2017-01-24 10:03:32 +00:00
email: true
2017-02-17 13:48:41 +00:00
# Taken from: https://github.com/mdix/es6-babel-browserify-karma-boilerplate/blob/master/.travis.yml#L3