-
Notifications
You must be signed in to change notification settings - Fork 121
/
appveyor.yml
40 lines (33 loc) · 822 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
40
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# branches to build
branches:
# whitelist
only:
- master
except:
- gh-pages
# build version format
version: "1.0.{build}"
# what combinations to test
environment:
matrix:
- nodejs_version: 0.12
JSPM_GITHUB_AUTH_TOKEN:
secure: IHRybG5uoTsBHtfhRikizzI/mBxelmXVKXbnTp1f/XmzDimp5WDpKkZJwyfe1P1qaOwL8sZbIs8zb5Z5xy2J9Q==
# Get the stable version of node
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g jspm
- jspm config registries.github.auth $env:JSPM_GITHUB_TOKEN
- npm install
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test -- --browsers=Chrome
build: off
cache:
- node_modules -> package.json
- jspm_packages -> package.json