OpenBuilds-CONTROL/appveyor.yml

24 wiersze
487 B
YAML

image: Visual Studio 2017
platform:
- x64
cache:
- node_modules
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
- git config --global credential.helper store
install:
- ps: Install-Product node 7 x64
- ps: $env:package_version = (Get-Content -Raw -Path package.json | ConvertFrom-Json).version
- ps: Update-AppveyorBuild -Version "$env:package_version-$env:APPVEYOR_BUILD_NUMBER"
- npm install
build_script:
- npm run dist
test: off