forked from showdownjs/showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
49 lines (44 loc) · 1.25 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
48
49
# branches to build
#branches:
# whitelist
#only:
# - master
# What combinations to test
environment:
matrix:
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "6"
platform: x64
- nodejs_version: "7"
platform: x64
install:
# Use version based on tag
- ps: $env:package_version = (Get-Content -Raw -Path package.json | ConvertFrom-Json).version
- ps: Update-AppveyorBuild -Version "$env:package_version-$env:APPVEYOR_BUILD_NUMBER"
# install node
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
- ps: >-
if ($env:nodejs_version -eq "0.12" -or $env:nodejs_version -eq "0.10") {
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
# install grunt-cli globally
- npm install -g grunt-cli
# install modules
- npm install
test_script:
# Output useful info for debugging
- node --version && npm --version
- ps: >-
if ($env:nodejs_version -eq "0.12" -or $env:nodejs_version -eq "0.10") {
echo ----- Running tests in LEGACY mode -----
grunt test-old
} else {
echo ----- Running tests in NORMAL mode -----
grunt test
}
# Don't actually build.
build: off