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

.appveyor.yml - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cfbb6b3c92ba769840c19c6185da30cc266cefc (plain)
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
# 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

# Install scripts. (runs after repo cloning)
install:
  # https://www.appveyor.com/docs/lang/nodejs-iojs#installing-em-any-em-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