-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
41 lines (35 loc) · 1.08 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
# http://www.appveyor.com/docs/appveyor-yml
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "4.1"
- nodejs_version: "4.2"
- nodejs_version: "5"
branches:
except:
- /^v[0-9]/
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
# Always use latest npm.
- npm install -g npm
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# We test multiple Windows shells because of Node.js stdout buffering issues:
# https://github.com/joyent/node/issues/3584
- ps: "npm run ci-build #PowerShell" # Pass comment to PS for easier debugging
- cmd: npm run ci-build
# Don't actually build any .NET.
build: off
# Talk to Slack.
notifications:
- provider: Slack
auth_token:
secure: jpmRZ9H5UGhAGstWdj0WWiLoz+NyL6+QrGVyzEkRkKLnwxi1ULuqkxSQ63D3LGr3eL2GiHbvxg5lzdrdirt82g==
channel: mozu-build-status