-
Notifications
You must be signed in to change notification settings - Fork 25
/
appveyor.yml
35 lines (27 loc) · 924 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
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# This file: cloned from https://github.com/gruntjs/grunt/blob/master/appveyor.yml
# Build version format
version: "{build}"
# Test against this version of Node.js
environment:
nodejs_version: "Stable"
build: off
clone_depth: 10
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
install:
- ps: Install-Product node $env:nodejs_version
- ps: $env:path = $env:appdata + "\npm;" + $env:path
- npm install && npm install karma-ie-launcher
test_script:
# Output useful info for debugging.
- node --version && npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm --version # PowerShell" # Pass comment to PS for easier debugging
# - npm run tests.all
- npm run test
cache:
- '%APPDATA%\npm-cache'