Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Commit

Permalink
Merge pull request #292 from FirstLegoLeague/appveyor
Browse files Browse the repository at this point in the history
appveyor: Add support for automatic Windows CI tests.
  • Loading branch information
kmeesters committed Oct 23, 2017
2 parents 79df256 + d60bfec commit f7f3b46
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions appveyor.yml
@@ -0,0 +1,22 @@
environment:
nodejs_version: "8.4"

# 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
# Upgrade npm
- npm install -g npm
# install modules
- npm install

# 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

0 comments on commit f7f3b46

Please sign in to comment.