Initial commit
[yaffs-website] / node_modules / tiny-lr / appveyor.yml
1 # appveyor file
2 # http://www.appveyor.com/docs/appveyor-yml
3
4 # branches to build
5 branches:
6   # whitelist
7   only:
8     - master
9
10 # build version format
11 version: "{build}"
12
13 # what combinations to test
14 environment:
15   matrix:
16     - nodejs_version: 0.12
17
18 # Get the latest stable version of Node 0.STABLE.latest
19 install:
20   - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
21   - npm install
22
23 build: off
24
25 test_script:
26   - node --version
27   - npm --version
28   - cmd: npm test