github-desktop/.travis.yml
2016-05-25 11:12:13 -04:00

37 lines
454 B
YAML

notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
language: node_js
node_js:
- "node"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
script:
- npm run lint
- npm run build:prod
- npm test
cache:
directories:
- node_modules