mirror of
https://github.com/desktop/desktop
synced 2024-10-30 17:25:09 +00:00
37 lines
438 B
YAML
37 lines
438 B
YAML
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
|
|
os:
|
|
- osx
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^__release-.*/
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "6"
|
|
|
|
cache:
|
|
timeout: 600
|
|
directories:
|
|
- node_modules
|
|
- $HOME/.electron
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm run build:prod
|
|
- npm run test:setup
|
|
- npm test
|
|
|
|
after_success:
|
|
- npm run publish
|
|
|
|
after_failure:
|
|
- npm run test:review
|