Skip to content

Commit

Permalink
Add appveyor file for testing on windows
Browse files Browse the repository at this point in the history
#14 Start getting stats for performance testing
  • Loading branch information
yargalot committed Oct 31, 2016
1 parent 479f14e commit 29733e2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Test against this version of Node.js
environment:
nodejs_version: "4"
nodejs_version: "5"
nodejs_version: "6"

# 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

# 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

2 comments on commit 29733e2

@XhmikosR
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yargalot: I'd remove v5 for now.

Also, feel free to use any parts we already use here https://github.com/gruntjs/grunt-contrib-internal/blob/master/appveyor.yml

I'm waiting for AppVeyor to add v7, then I'll add that too.

@yargalot
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, will update now. Thanks for the heads up!

Please # to comment.