Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-02-28 04:31:13 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-02-28 04:31:13 +0300
commit0d2dc8c90900d1ea2103f6a457c76c7998eab3a6 (patch)
tree654ffd61b8847d1f745f1712e28ffbdf347a772f /.appveyor.yml
parent809149e8ae938964eae1757eb91feb1defec9dd8 (diff)
.appveyor.yml
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 0000000..b7f0f83
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,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