Skip to content

Commit

Permalink
add appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
floydpink committed Nov 18, 2020
1 parent b50399f commit fc3e45e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Test against the latest version of this Node.js version
environment:
matrix:
- nodejs_version: "15"
- nodejs_version: "14"
- nodejs_version: "12"
- nodejs_version: "10"

# 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

0 comments on commit fc3e45e

Please # to comment.