martinmicunda/employee-scheduling-api

View on GitHub
appveyor.yml

Summary

Maintainability
Test Coverage
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml

# branches to build
branches:
  # whitelist
  only:
    - master
  except:
    - gh-pages

# build version format
version: "1.0.{build}"

# what combinations to test
environment:
  matrix:
    - nodejs_version: 0.12

# Get the stable version of node
install:
  - ps: Install-Product node $env:nodejs_version
  - npm install

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

build: off

cache:
  - node_modules -> package.json