Open
Description
Suggestion
on the ci-integrations pipeline, make sure the pnpm install
will ignore the lockfile problem.
it can be done in two ways:
- (recommended): change NODE_ENV to development, or use
pnpm install
instead ofpnpm ci
, to make sure it ignores the lockfile changes. - (not recommended, use it if the first one not working): remove the pnpm lock file before the install step, so it will force to ignore it.
Motivation
we want the CI to pass for contribution PRs, and will test the actual integrations build without falling on non-relevant problems on installation.
Context
No response