Pnpm: Making installation faster on CI servers

Created on 17 Jun 2017  ·  3Comments  ·  Source: pnpm/pnpm

Installations on CI servers require less checks. With some assumptions, pnpm can work faster. Some ideas from Kat's cipm can be reused.

  • [ ] unverified installation on CI servers #802
performance

Most helpful comment

npm clean‑install is equivalent to pnpm install ‑‑frozen‑lockfile.

All 3 comments

is this issue about npm ci command analogue in pnpm?

npm clean‑install is equivalent to pnpm install ‑‑frozen‑lockfile.

Unlike npm, pnpm will automatically run a more efficient installation algorithm when the lockfile is up-to-date.

This issue is about making this installation even faster on CI environments as we can make some assumptions in such environment.

Was this page helpful?
0 / 5 - 0 ratings