mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 10:01:48 -04:00
574 B
574 B
Continuous Integration
pnpm can easily be used in various continuous integration systems.
Travis
On Travis CI, you can use pnpm for installing your dependencies by adding this to your .travis.yml file:
before_install:
- npm install -g pnpm
install:
- pnpm install
AppVeyor
On AppVeyor, you can use pnpm for installing your dependencies by adding this to your appveyor.yml:
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g pnpm
- pnpm install