js-libp2p-secio/appveyor.yml
Victor Bjelkholm 1d9f6af48b Updating CI files
This commit updates all CI scripts to the latest version
2017-12-22 14:38:01 +01:00

30 lines
605 B
YAML

# Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
version: "{build}"
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
matrix:
fast_finish: true
install:
# Install Node.js
- ps: Install-Product node $env:nodejs_version
# Upgrade npm
- npm install -g npm
# Output our current versions for debugging
- node --version
- npm --version
# Install our package dependencies
- npm install
test_script:
- npm run test:node
build: off