Skip to content

Commit

Permalink
Merge pull request #451 from abhishalya/appveyorCI
Browse files Browse the repository at this point in the history
appveyor.yml: Add support for Windows
  • Loading branch information
Stratus3D authored Nov 2, 2019
2 parents d1f36f2 + 7d5d62c commit 0bc07dd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
clone_depth: 50

install:
- ps: Install-Product node $env:nodejs_version
- npm cache clear --force
- ps: >-
if ($env:nodejs_version -eq "4") {
npm install npm@latest-5 -g
} else {
npm install npm@latest -g
}
- npm --version
- npm install -g bats

build: false

test_script:
- C:\cygwin\bin\bash -lc "export PATH="/usr/bin:/usr/local/bin:/cygdrive/c/Users/appveyor/AppData/Roaming/npm" && cd $APPVEYOR_BUILD_FOLDER && bats test"

0 comments on commit 0bc07dd

Please sign in to comment.