mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-26 11:02:01 -04:00
21 lines
399 B
YAML
21 lines
399 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: 4
|
|
- nodejs_version: 6
|
|
- nodejs_version: 7
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm set fetch-retry-maxtimeout 180000
|
|
- npm install -g pnpm
|
|
- pnpm install
|
|
matrix:
|
|
fast_finish: true
|
|
build: off
|
|
version: '{build}'
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|
|
cache:
|
|
- '%USERPROFILE%\.pnpm-registry'
|