UNPKG

509 BYAMLView Raw
1# http://www.appveyor.com/docs/appveyor-yml
2
3# Performance optimization
4shallow_clone: true
5cache:
6 - '%APPDATA%\npm-cache'
7
8environment:
9 matrix:
10 - nodejs_version: "6"
11 - nodejs_version: "8"
12 - nodejs_version: "10"
13
14install:
15 - ps: Install-Product node $env:nodejs_version
16 - npm install
17
18build: off
19
20test_script:
21 # Workaround for https://github.com/appveyor/ci/issues/2420
22 - set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
23 - node --version
24 - npm --version
25 - npm test