Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / tsscmp / appveyor.yml
1 # Test against this version of Node.js
2 environment:
3   matrix:
4    # nodejs_version: "0.6" not supported  in Windows x86
5    - nodejs_version: "0.8"
6    - nodejs_version: "0.10"
7    - nodejs_version: "0.11"
8    - nodejs_version: "0.12"
9    - nodejs_version: "4.0"
10    - nodejs_version: "5.0"
11    - nodejs_version: "6.0"
12
13 # Install scripts. (runs after repo cloning)
14 install:
15   # Get the latest stable version of Node.js or io.js
16   - ps: Install-Product node $env:nodejs_version
17   # install modules
18   - npm install
19
20 # Post-install test scripts.
21 test_script:
22   # Output useful info for debugging.
23   - node --version
24   - npm --version
25   # run tests
26   - npm test
27
28 # Don't actually build.
29 build: off