mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-29 20:41:47 -04:00
26 lines
574 B
Markdown
26 lines
574 B
Markdown
# Continuous Integration
|
|
|
|
pnpm can easily be used in various continuous integration systems.
|
|
|
|
## Travis
|
|
|
|
On [Travis CI](https://travis-ci.org/), you can use pnpm for installing your dependencies by adding this to your `.travis.yml` file:
|
|
|
|
```yaml
|
|
before_install:
|
|
- npm install -g pnpm
|
|
install:
|
|
- pnpm install
|
|
```
|
|
|
|
## AppVeyor
|
|
|
|
On [AppVeyor](https://www.appveyor.com/), you can use pnpm for installing your dependencies by adding this to your `appveyor.yml`:
|
|
|
|
```yaml
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install -g pnpm
|
|
- pnpm install
|
|
```
|