-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
33 lines (29 loc) · 850 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
# Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "9"
init:
- git config --global core.autocrlf input
# - git config --global core.autocrlf true
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# we need npm version > 5.6.0 to not barf on cross-platform optional dependencies.
# For details, see https://github.com/npm/npm/pull/19054
- appveyor-retry npm install npm@^5.6.0 -g
# install modules
- appveyor-retry npm install
build_script:
- node --version
- npm --version
- npm run prepush
- git diff
# Post-install test scripts.
# test_script:
# Output useful info for debugging.
# run tests
# - npm run test