mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
24 lines
286 B
YAML
24 lines
286 B
YAML
environment:
|
|
nodejs_version: "5"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
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
|
|
|
|
cache:
|
|
- node_modules
|