mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
29 lines
545 B
Text
29 lines
545 B
Text
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
|
|
|
|
environment:
|
|
matrix:
|
|
- platform: x64
|
|
|
|
image: Visual Studio 2019
|
|
|
|
install:
|
|
- ps: Install-Product node 12 x64
|
|
- set CI=true
|
|
- yarn
|
|
|
|
build: off
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
shallow_clone: true
|
|
|
|
test_script:
|
|
- node --version
|
|
- yarn --version
|
|
- yarn run test
|
|
|
|
on_success:
|
|
- IF %APPVEYOR_REPO_BRANCH%==canary cp build\canary.ico build\icon.ico
|
|
- yarn run dist
|
|
- ps: Get-ChildItem .\dist\squirrel-windows\*.exe | % { Push-AppveyorArtifact $_.FullName }
|