inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
43 lines (33 loc) • 859 B
YAML
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
# Test against this version of Node.js
environment:
NODE_ENV: test
matrix:
- nodejs_version: "stable"
- nodejs_version: "5.4.1"
- nodejs_version: "5.4.0"
- nodejs_version: "5.3.0"
- nodejs_version: "5.2.0"
- nodejs_version: "5.1.1"
- nodejs_version: "4.4.6"
build: off
branches:
only:
- master
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm config set progress=false
- npm install
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
test_script:
# Output useful info for debugging.
- node --version && npm --version
- ps: "npm --version # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm run test
cache: node_modules