mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
34 lines
643 B
YAML
34 lines
643 B
YAML
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
|
|
|
|
environment:
|
|
matrix:
|
|
- platform: x64
|
|
GH_TOKEN:
|
|
secure: tEHrAaRFMrUzagNJsnU+6Esvaw/FdUXZKWz7a690VAy6zzEThB0lThHLFVKZrQrP
|
|
|
|
image: Visual Studio 2015
|
|
|
|
init:
|
|
- npm config set msvs_version 2015 # we need this to build `pty.js`
|
|
|
|
cache:
|
|
- node_modules
|
|
|
|
install:
|
|
- ps: Install-Product node 6 x64
|
|
- set CI=true
|
|
- npm -g install npm@latest
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
shallow_clone: true
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm run test
|
|
|
|
on_success:
|
|
- npm run dist
|
|
- ps: ls .\dist\win\*.exe | % { Push-AppveyorArtifact $_.FullName }
|