Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix breaking changes (?)
  • Loading branch information
Lms24 committed Jan 28, 2026
commit e67a77f13cc61e3a628082e43483bddb307c4917
3 changes: 1 addition & 2 deletions dev-packages/node-overhead-gh-action/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ async function run() {
}

async function runNodeOverheadOnComparisonBranch() {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const resultsFilePath = getResultsFilePath();

const artifactClient = new DefaultArtifactClient();
Expand All @@ -191,7 +190,7 @@ async function runNodeOverheadOnComparisonBranch() {
});
const files = await globber.glob();

await artifactClient.uploadArtifact(ARTIFACT_NAME, files, __dirname);
await artifactClient.uploadArtifact(ARTIFACT_NAME, files);
Comment thread
Lms24 marked this conversation as resolved.
Outdated
}

run();
Expand Down
3 changes: 1 addition & 2 deletions dev-packages/size-limit-gh-action/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ async function run() {
}

async function runSizeLimitOnComparisonBranch() {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const resultsFilePath = getResultsFilePath();

const limit = new SizeLimitFormatter();
Expand All @@ -229,7 +228,7 @@ async function runSizeLimitOnComparisonBranch() {
});
const files = await globber.glob();

await artifactClient.uploadArtifact(ARTIFACT_NAME, files, __dirname);
await artifactClient.uploadArtifact(ARTIFACT_NAME, files);
}

run();
Expand Down
Loading