holisticon/angularjs-common

View on GitHub
appveyor.yml

Summary

Maintainability
Test Coverage
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
  matrix:
    - NPM_VERSION: "3.10.7"
    - NPM_VERSION: "4"

install:
  - npm install -g npm@%NPM_VERSION%
  # Output useful info for debugging.
  - node --version
  - npm --version

build: off

test_script:
  - npm install
  - npm run build
  - npm run test
  - npm run e2e