mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-19 12:54:45 +00:00
fixing pnpm output issue (#545)
This commit is contained in:
parent
ad8542ca5e
commit
2fddd8803e
3 changed files with 6 additions and 6 deletions
|
@ -18,7 +18,7 @@ export const supportedPackageManagers: SupportedPackageManagers = {
|
|||
},
|
||||
pnpm: {
|
||||
lockFilePatterns: ['pnpm-lock.yaml'],
|
||||
getCacheFolderCommand: 'pnpm store path'
|
||||
getCacheFolderCommand: 'pnpm store path --silent'
|
||||
},
|
||||
yarn1: {
|
||||
lockFilePatterns: ['yarn.lock'],
|
||||
|
@ -94,7 +94,7 @@ export const getCacheDirectoryPath = async (
|
|||
|
||||
core.debug(`${packageManager} path is ${stdOut}`);
|
||||
|
||||
return stdOut;
|
||||
return stdOut.trim();
|
||||
};
|
||||
|
||||
export function isGhes(): boolean {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue