trailsjs/generator-trailpack

View on GitHub
appveyor.yml

Summary

Maintainability
Test Coverage
environment:
  matrix:
  - nodejs_version: "4"
  - nodejs_version: "5"
  - nodejs_version: "6"
  - nodejs_version: "7"

install:
  - ps: Install-Product node $env:nodejs_version
  - npm install

platform:
  - x64

# Post-install test scripts.
test_script:
  # Output useful info for debugging.
  - node --version
  - npm --version
  # run tests
  - npm test

# Don't actually build.
build: off