diff --git a/lib/packageManagers.ts b/lib/packageManagers.ts index 574b9d8..74cccbb 100644 --- a/lib/packageManagers.ts +++ b/lib/packageManagers.ts @@ -7,7 +7,7 @@ type PackageManager = (typeof supportedPackageManagers)[number]; const installCommands: Record = { npm: 'npm ci', pnpm: 'pnpm install --frozen-lockfile', - yarn: 'yarn install --frozen-lockfile', + yarn: 'yarn install --immutable', }; const debugFlags: Record = { npm: '--verbose',