I'm having this issue in my github action.

My repo is a monorepo handled with pnpm workspace. In the root package.json file I have some package referencies like:
{
"devDependencies": {
"@package-a": "workspace:*",
"@package-b": "workspace:*",
"@package-c": "workspace:*"
}
}
For fixing this, probably should be enough to detect which package manager the repo is using and use the correct CLI command.
I'm having this issue in my github action.
My repo is a monorepo handled with
pnpmworkspace. In the rootpackage.jsonfile I have some package referencies like:{ "devDependencies": { "@package-a": "workspace:*", "@package-b": "workspace:*", "@package-c": "workspace:*" } }For fixing this, probably should be enough to detect which package manager the repo is using and use the correct CLI command.