blob: d4c6a085caef692f073186caf0cbfc5c19bf3ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "6"
install:
- ps: Install-Product node $env:nodejs_version
- npm cache clean
- npm install -g npm@3
- npm install
build: off
test_script:
- node --version
- npm --version
- npm test
|