Mairu/meteor-electrify

View on GitHub
appveyor.yml

Summary

Maintainability
Test Coverage
# Test against this version of Node.js
environment:
  nodejs_version: "6"
  ELECTRIFY_TESTS_DEFAULT_STOP_TIMEOUT: 60000

# Install scripts. (runs after repo cloning)
install:
  # Get the latest stable version of Node.js or io.js
  - ps: Install-Product node $env:nodejs_version
  # install modules
  - npm install
  # install Meteor (current version of leaderboard)
  - choco install meteor --params "'/RELEASE:1.3.4.4'"
  - refreshenv

# Post-install test scripts.
test_script:
  # Output useful info for debugging.
  - node --version
  - npm --version
  - meteor --version
  # run tests
  - node make.js test.cover.send

# Don't actually build.
build: off