We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febf70f commit f954ef8Copy full SHA for f954ef8
dev-packages/size-limit-gh-action/index.mjs
@@ -236,9 +236,12 @@ async function run() {
236
core.warning(`${process.env.GITHUB_WORKFLOW || ''}`);
237
core.endGroup();
238
239
+ core.warning(download);
240
+ core.warning(Object.keys(download))
241
+
242
// Ignore failures here as it is likely that this only happens when introducing size-limit
243
// and this has not been run on the main branch yet
- const res = await download.default(octokit, {
244
+ const res = await download(octokit, {
245
...repo,
246
artifactName: ARTIFACT_NAME,
247
branch: comparisonBranch,
0 commit comments