Files
pnpm/appveyor.yml
Zoltan Kochan 0b089049bc ci(appveyor): only test on Node.js 4
AppVeyor is super slow, so we run tests only on the oldest
supported Node version.
2018-04-07 15:27:27 +03:00

23 lines
535 B
YAML

environment:
matrix:
- nodejs_version: 4
install:
- ps: Install-Product node $env:nodejs_version
- npm set verify-store-integrity false
- npm set fetch-retry-maxtimeout 180000
- set PNPM_VERSION=1.33.2
- curl -L https://unpkg.com/@pnpm/self-installer | node
# Testing whether pnpm can upgrade itself
- pnpm i -g pnpm@next
- pnpm -v
- pnpm install --frozen-shrinkwrap --no-lock
matrix:
fast_finish: true
build: off
version: '{build}'
test_script:
- node --version
- npm --version
- npm t
skip_tags: true