mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-30 13:02:03 -04:00
23 lines
535 B
YAML
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
|