insomnia/appveyor.yml
Gregory Schier 55bfe2acb9 Templating Improvements and Response Tags (#88)
* Version bump

* Got async Nunjucks extensions working

* Got JSONPath extension working

* Swapped render function for new stuff

* Wrote custom recursive render function

* traverse -> clone

* add-module-exports

* Moved tests
2017-02-20 10:32:27 -08:00

58 lines
1.2 KiB
YAML

image: Visual Studio 2015
build: off
deploy: off
#---------------------------------#
# environment configuration #
#---------------------------------#
shallow_clone: true
platform: x64
environment:
nodejs_version: "6.5.0"
# Things to install after repo clone
install:
- ps: Install-Product node $env:nodejs_version $env:Platform
- npm install -g npm@latest > Nul
- npm install > NUL
- npm config set msvs_version 2015
cache:
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
- 'node_modules'
#---------------------------------#
# 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 #
#---------------------------------#
#on_success:
# - npm run build-n-package:win
# - ps: ls .\dist\win\* | % { Push-AppveyorArtifact $_.FullName }