File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24560,6 +24560,14 @@ async function run() {
2456024560 packageFilePath,
2456124561 workspacePath
2456224562 );
24563+ core4.info(`
24564+ baseRef: ${baseRef}
24565+ currentRef: ${currentRef}
24566+ lockfilePath: ${lockfilePath}
24567+ packageFilePath: ${packageFilePath}
24568+ basePackageJson: ${basePackageJson ? "found" : "not found"}
24569+ currentPackageJson: ${currentPackageJson ? "found" : "not found"}
24570+ `);
2456324571 const currentDeps = parseLockfile(lockfilePath, currentPackageLock);
2456424572 const baseDeps = parseLockfile(lockfilePath, basePackageLock);
2456524573 core4.info(`Dependency threshold set to ${dependencyThreshold}`);
Original file line number Diff line number Diff line change @@ -114,6 +114,14 @@ async function run(): Promise<void> {
114114 packageFilePath ,
115115 workspacePath
116116 ) ;
117+ core . info ( `
118+ baseRef: ${ baseRef }
119+ currentRef: ${ currentRef }
120+ lockfilePath: ${ lockfilePath }
121+ packageFilePath: ${ packageFilePath }
122+ basePackageJson: ${ basePackageJson ? 'found' : 'not found' }
123+ currentPackageJson: ${ currentPackageJson ? 'found' : 'not found' }
124+ ` ) ;
117125
118126 const currentDeps = parseLockfile ( lockfilePath , currentPackageLock ) ;
119127 const baseDeps = parseLockfile ( lockfilePath , basePackageLock ) ;
You can’t perform that action at this time.
0 commit comments