diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2018-01-07 14:14:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-07 14:14:58 +0800 |
commit | 8430c2f9f85e7217e87cad6756a2d8a083b137bc (patch) | |
tree | 7e8dd1217bd4cdc8880ef737d621e4efef18d719 | |
parent | 659c8a763265dfb6d567f5a41422f5f9095af4d8 (diff) | |
download | tracifyjs-8430c2f9f85e7217e87cad6756a2d8a083b137bc.tar.gz tracifyjs-8430c2f9f85e7217e87cad6756a2d8a083b137bc.zip |
enable AppVeyor CI (#2739)
-rw-r--r-- | appveyor.yml | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/appveyor.yml b/appveyor.yml index 4d8c2e2b..8972925c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,24 +1,20 @@ 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 - + - nodejs_version: "0.10" + - nodejs_version: "0.12" + - nodejs_version: "4" + - nodejs_version: "6" + - nodejs_version: "8" install: - - ps: Install-Product node $env:nodejs_version $env:platform + - ps: Install-Product node $env:nodejs_version + - set UGLIFYJS_TEST_ALL=1 - npm install - +build: off +cache: + - tmp +matrix: + fast_finish: true test_script: - node --version - npm --version - npm test - -build: off |