forked from balena-io/balena-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (38 loc) · 1.1 KB
/
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
40
41
42
43
44
45
46
47
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
cache:
- C:\Users\appveyor\.node-gyp
- '%AppData%\npm-cache'
matrix:
fast_finish: true
# what combinations to test
environment:
matrix:
- nodejs_version: 8
RESINTEST_EMAIL: '[email protected]'
RESINTEST_USERNAME: 'test2_juan'
RESINTEST_REGISTER_EMAIL: '[email protected]'
RESINTEST_REGISTER_USERNAME: 'test2_register_juan'
- nodejs_version: 6
RESINTEST_EMAIL: '[email protected]'
RESINTEST_USERNAME: 'test3_juan'
RESINTEST_REGISTER_EMAIL: '[email protected]'
RESINTEST_REGISTER_USERNAME: 'test3_register_juan'
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install -g npm@4 yarn
- set PATH=%APPDATA%\npm;%PATH%
- yarn install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/3d5ed28fa9ae4c25f46f
on_build_success: false
on_build_failure: true
on_build_status_changed: true