forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
29 lines (24 loc) · 829 Bytes
/
appveyor.yml
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
# http://www.appveyor.com/docs/appveyor-yml
# Test against these versions of Io.js and Node.js.
environment:
matrix:
- 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
# chocolatey install jq - https://chocolatey.org/packages/jq
- choco install jq
# install modules
- npm install
# Post-install test scripts.
test_script:
- node --version
- npm --version
# https://bugs.chromium.org/p/chromium/issues/detail?id=158372#c6
- wmic datafile where name="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" get Version /value
- npm run test:unit
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"