From cf9e6912c9aa6b721f54573a070d80a2a929c0e3 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 4 Jan 2017 13:36:32 -0500 Subject: [PATCH] add appveyor config --- appveyor.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..19dcad4f15 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,30 @@ +# http://www.appveyor.com/docs/appveyor-yml + +version: "{build}" + +clone_depth: 10 + +init: + - git config --global core.autocrlf false + +environment: + matrix: + # node.js + - nodejs_version: 6 + +install: + - ps: Install-Product node $env:nodejs_version + - npm install + +build: off + +test_script: + - node --version && npm --version + - npm test + +matrix: + fast_finish: false + +# cache: +# - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache +# - node_modules -> package.json # local npm modules