forked from aspectron/node-process-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (33 loc) · 802 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
33
34
35
36
37
38
39
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "12"
- nodejs_version: "11"
- nodejs_version: "10"
- nodejs_version: "9"
- nodejs_version: "8"
platform:
- x86
- x64
install:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version $env:platform
- npm i -g yarn
- set PATH=%APPDATA%\npm;%APPVEYOR_BUILD_FOLDER%\node_modules\.bin;%PATH%
# install modules
- yarn install --ignore-scripts
# build
- prebuild --strip
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- yarn --version
# run tests
- npm test
on_success:
- for %%i in (prebuilds\*) do appveyor PushArtifact %%i
# Don't actually build.
build: off
skip_tags: true
version: "{build}"