Skip to content

Commit aebfdfe

Browse files
committed
chore: CI debugging
1 parent e8e2bd1 commit aebfdfe

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ async function run(octokit, context, token) {
6868
await exec(`git reset --hard`);
6969

7070
const newSizes = await plugin.readFromDisk(cwd);
71+
console.log('newSizes', newSizes);
7172

7273
startGroup(`[base] Checkout target branch`);
7374
try {
@@ -125,8 +126,10 @@ async function run(octokit, context, token) {
125126
await exec(`git reset --hard`);
126127

127128
const oldSizes = await plugin.readFromDisk(cwd);
129+
console.log('oldSizes', oldSizes);
128130

129131
const diff = await plugin.getDiff(oldSizes, newSizes);
132+
console.log('diff', diff);
130133

131134
startGroup(`Size Differences:`);
132135
const cliText = await plugin.printSizes(diff);

0 commit comments

Comments
 (0)