Skip to content

Commit 875b7ce

Browse files
committed
debugging
1 parent 306c2d1 commit 875b7ce

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

build/main.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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}`);

src/main.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)