From: Richard van Velzen Date: Sun, 17 Jul 2016 16:17:33 +0000 (+0200) Subject: Build with AppVeyor on windows X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e8b23c779816442a1d4e06453f06ab5a187ac98e;p=UglifyJS.git Build with AppVeyor on windows --- diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..4d8c2e2b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +environment: + matrix: + - nodejs_version: "0.10" + - nodejs_version: "0.12" + - nodejs_version: "4.0" + - nodejs_version: "6.0" + +matrix: + fast_finish: true + +platform: + - x86 + - x64 + +install: + - ps: Install-Product node $env:nodejs_version $env:platform + - npm install + +test_script: + - node --version + - npm --version + - npm test + +build: off