-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (21 loc) · 802 Bytes
/
appveyor.yml
File metadata and controls
28 lines (21 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
install:
- ps: Install-Product node $env:nodejs_version
- npm install
build: off
before_test: "git clone https://github.com/sourcejs/init.git user"
test_script:
- node --version && npm --version
- ps: "npm run ci-test-win # PowerShell" # Pass comment to PS for easier debugging
- cmd: "npm run ci-test-win" # Run without watch because of CI bug
matrix:
fast_finish: true
cache:
- C:\Users\appveyor\AppData\Roaming\npm\node_modules -> package.json # global npm modules
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
- node_modules -> package.json # local npm modules