UNPKG

528 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 - nodejs_version: 12
14
15install:
16 - ps: Install-Product node $env:nodejs_version
17 - npm install
18
19build: off
20
21test_script:
22 # Workaround for https://github.com/appveyor/ci/issues/2420
23 - set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
24 - node --version
25 - npm --version
26 - npm test