UNPKG

423 BYAMLView Raw
1# https://www.appveyor.com/docs/lang/nodejs-iojs/
2
3cache:
4 - node_modules
5
6init:
7 - git config --global core.autocrlf input
8
9environment:
10 matrix:
11 - nodejs_version: "8"
12 - nodejs_version: "10"
13
14install:
15 - ps: Install-Product node $env:nodejs_version
16 - npm install
17
18test_script:
19 - node --version
20 - npm --version
21 - node test/async-server-close.js
22 - node test/multi.js
23 - node test/plugs.js
24
25build: off