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
revert
  • Loading branch information
Lms24 committed Jan 28, 2026
commit f25142ddf2fbf56eb2d5ff952234585614ff8b99
3 changes: 2 additions & 1 deletion dev-packages/node-overhead-gh-action/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ async function run() {
}

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

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

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

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

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

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

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

run();
Expand Down
Loading