mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
* Bumping electron to 3.0.10 * Updating node version in travis and appveyor * Fixing incorrect require of electron-fetch * Fix zoom to match previous versions Additionally I'm removing a call to disable pinch-zoom, it's disable by default since Electron 2 (https://electronjs.org/releases#2.0.0) * Bumping electron to 4.0.0-beta.8 * Bumping electron to 4.0.0-beta.9 * Work around for Copy accelerator not firing on electron v4 * Fixing header/titlebar in MacOS * Upgrading to electron 4.0.0 and node-pty 0.8.0 * Adding yarn.lock changes for electron 4.0.0 * Adding comments for editor:copy workaround. Scaling issue is only on Linux * Upgrading node-abi to support electron 4.0.0 * popup now takes an object as input
32 lines
628 B
YAML
32 lines
628 B
YAML
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
|
|
|
|
environment:
|
|
matrix:
|
|
- platform: x64
|
|
|
|
image: Visual Studio 2015
|
|
|
|
init:
|
|
- yarn config set msvs_version 2015 # we need this to build `pty.js`
|
|
|
|
install:
|
|
- ps: Install-Product node 10.11.0 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 }
|