forked from webtorrent/webtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
28 lines (24 loc) · 883 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
# Explicitly ensure line endings aren't mangled
# http://www.appveyor.com/docs/lang/nodejs-iojs#line-endings
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js
# https://www.appveyor.com/docs/lang/nodejs-iojs#testing-under-multiple-versions-of-node-js-or-io-js
environment:
matrix:
- nodejs_version: "" # https://www.appveyor.com/docs/installed-software#node-js
- nodejs_version: "4"
# 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
# install modules
- npm install
# Post-install test scripts.
test_script:
- node --version
- npm --version
- npm run test-node # (not `npm test`, because saucelabs tests run via Travis)
# Don't actually build.
# https://www.appveyor.com/docs/lang/nodejs-iojs#quick-start
build: off