mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
37 lines
449 B
YAML
37 lines
449 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
|
|
- npm test
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|