mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:59:53 +00:00
28 lines
345 B
YAML
28 lines
345 B
YAML
environment:
|
|
nodejs_version: "6"
|
|
|
|
cache:
|
|
- node_modules
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^__release-.*/
|
|
|
|
skip_tags: true
|
|
|
|
version: "{build}"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
|
|
build_script:
|
|
- npm run lint
|
|
- npm run build:prod
|
|
|
|
test_script:
|
|
- npm test
|
|
|
|
on_success:
|
|
- node script/publish
|