Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
#350 Add AppVeyor configuration
Browse files Browse the repository at this point in the history
closes #350
  • Loading branch information
bgold09 authored and HamletDRC committed Mar 17, 2017
1 parent 27410a9 commit 269f576
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Test against the latest version of this Node.js version
environment:
nodejs_version: "4"

install:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
- npm install -g grunt-cli
- npm install

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 269f576

Please sign in to comment.