@@ -10,7 +10,7 @@ import * as glob from '@actions/glob';
10
10
import * as io from '@actions/io' ;
11
11
import { markdownTable } from 'markdown-table' ;
12
12
13
- import { SizeLimit } from './utils/SizeLimitFormatter.mjs' ;
13
+ import { SizeLimitFormatter } from './utils/SizeLimitFormatter.mjs' ;
14
14
import { getArtifactsForBranchAndWorkflow } from './utils/getArtifactsForBranchAndWorkflow.mjs' ;
15
15
16
16
const SIZE_LIMIT_HEADING = '## size-limit report 📦 ' ;
@@ -67,7 +67,7 @@ async function run() {
67
67
}
68
68
69
69
const octokit = getOctokit ( githubToken ) ;
70
- const limit = new SizeLimit ( ) ;
70
+ const limit = new SizeLimitFormatter ( ) ;
71
71
const resultsFilePath = getResultsFilePath ( ) ;
72
72
73
73
// If we have no comparison branch, we just run size limit & store the result as artifact
@@ -88,7 +88,7 @@ async function run() {
88
88
...repo ,
89
89
artifactName : ARTIFACT_NAME ,
90
90
branch : comparisonBranch ,
91
- workflowName
91
+ workflowName,
92
92
} ) ;
93
93
core . endGroup ( ) ;
94
94
@@ -189,7 +189,7 @@ async function run() {
189
189
async function runSizeLimitOnComparisonBranch ( ) {
190
190
const resultsFilePath = getResultsFilePath ( ) ;
191
191
192
- const limit = new SizeLimit ( ) ;
192
+ const limit = new SizeLimitFormatter ( ) ;
193
193
const artifactClient = artifact . create ( ) ;
194
194
195
195
const { output : baseOutput } = await execSizeLimit ( ) ;
0 commit comments