-
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Switch to AppVeyor for Windows testing (#1255)
Also, switch to shields.io for all badges (minus the Slack one)
- Loading branch information
1 parent
fcd2115
commit 676ca86
Showing
3 changed files
with
34 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: "{build}" | ||
|
||
shallow_clone: true | ||
|
||
environment: | ||
matrix: | ||
- NODEJS_VERSION: "13" | ||
PLATFORM: x64 | ||
- NODEJS_VERSION: "12" | ||
PLATFORM: x64 | ||
- NODEJS_VERSION: "10" | ||
PLATFORM: x64 | ||
- NODEJS_VERSION: "8" | ||
PLATFORM: x64 | ||
|
||
install: | ||
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:NODEJS_VERSION) $env:PLATFORM | ||
- npm ci | ||
|
||
test_script: | ||
- node --version | ||
- npm --version | ||
- npm test | ||
|
||
build: off | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
cache: | ||
- '%APPDATA%\npm-cache\ -> appveyor.yml,package.json,package-lock.json' |