insomnia/appveyor.yml
Gregory Schier 7b8d26c292 Added import from URI ability (#160)
* Added import from URI ability

* Add protocol handlers

* Fix for keymap setting on read-only mode

* Refactored some main components out

* Protocols shoudl work now
2017-05-03 10:48:23 -07:00

55 lines
1.3 KiB
YAML

image: Visual Studio 2015
build: off
#---------------------------------#
# environment configuration #
#---------------------------------#
shallow_clone: true
platform: x64
environment:
nodejs_version: "7.4.0"
# Things to install after repo clone
install:
- ps: Install-Product node $env:nodejs_version $env:Platform
- npm install -g npm@latest > Nul
- npm config set msvs_version 2013
- npm install > NUL
cache:
- '%APPDATA%\npm-cache -> .appveyor.cache'
- '%USERPROFILE%\.electron -> .appveyor.cache'
- 'node_modules -> .appveyor.cache'
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- node --version
- npm --version
- npm test
#---------------------------------#
# deployment configuration #
#---------------------------------#
#deploy:
# - provider: S3
# access_key_id:
# secure: ABcd==
# secret_access_key:
# secure: ABcd==
# bucket: my_bucket
# folder:
# artifact:
# set_public: false
#---------------------------------#
# global handlers #
#---------------------------------#
deploy_script:
- ps: If ($env:APPVEYOR_REPO_TAG -Match "true") {npm run build-n-package:win ; ls .\dist\win\* | % { Push-AppveyorArtifact $_.FullName }}