etcher/.travis.yml
Juan Cruz Viotti 52a77160e3 Make sure bower dependencies are installed in CI servers (#399)
Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
2016-05-10 15:44:06 -04:00

42 lines
712 B
YAML

language: cpp
sudo: false
env:
- NODE_VERSION="5"
os:
- linux
- osx
before_install:
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm --version
- nvm install $NODE_VERSION
- node --version
- npm --version
- npm config set spin=false
install:
- npm install
- npm install -g bower
- bower install
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
script:
- npm test
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/8b150eaf525c280ec2ac
on_success: change
on_failure: always
on_start: never