mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-03-15 08:41:05 +00:00
30 lines
605 B
YAML
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
|