mirror of https://github.com/Wilfred/difftastic/
29 lines
511 B
YAML
29 lines
511 B
YAML
image: Visual Studio 2015
|
|
|
|
environment:
|
|
NODEJS_VERSION: "10"
|
|
PREBUILD_UPLOAD:
|
|
secure: wFXEkNtRRO23ArXLq0wwWb77936/rCD4Pquty4hHH9wSdOZftPSvveLZvNbwWf2N
|
|
|
|
platform:
|
|
- x64
|
|
- x86
|
|
|
|
install:
|
|
- ps: Install-Product node $env:NODEJS_VERSION $env:Platform
|
|
- node --version
|
|
- npm --version
|
|
- npm install
|
|
|
|
test_script:
|
|
- npm run test
|
|
|
|
build: off
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^v.*$/
|
|
|
|
deploy_script: IF "%APPVEYOR_REPO_TAG%" == "true" (npm run dist && npm run dist:upload -u %PREBUILD_UPLOAD%)
|