forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (27 loc) · 826 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
30
31
32
# http://www.appveyor.com/docs/appveyor-yml
# Test against these versions of Io.js and Node.js.
environment:
WECHATY_LOG: silent
matrix:
# - nodejs_version: "7"
- nodejs_version: "8"
# 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 --progress=false install > nul 2>&1
- npm --progress=false install phantomjs-prebuilt > nul 2>&1
# Post-install test scripts.
test_script:
- node --version
- npm --version
- npm run lint
- npm run dist
- npm run test:chrome:fast
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"