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.
Most helpful comment
npm clean‑installis equivalent topnpm install ‑‑frozen‑lockfile.