forked from tediousjs/node-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
36 lines (29 loc) · 698 Bytes
/
appveyor.yml
File metadata and controls
36 lines (29 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "{build}"
image:
- Visual Studio 2015
- Visual Studio 2019
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"
install:
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
- npm install
- npm install msnodesqlv8@^2
platform:
- x86
- x64
cache:
- node_modules
build: off
before_test:
- sc config sqlbrowser start= auto
- net start sqlbrowser
test_script:
- node --version
- npm --version
- cmd: |
CALL %cd%\test\scripts\appveyor-runtests.cmd
EXIT /B %errorlevel%