File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
dev-packages/size-limit-gh-action Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -230,10 +230,10 @@ async function run() {
230
230
231
231
try {
232
232
core . startGroup ( 'Downloading base results' ) ;
233
- core . debug ( ARTIFACT_NAME ) ;
234
- core . debug ( comparisonBranch ) ;
235
- core . debug ( __dirname ) ;
236
- core . debug ( `${ process . env . GITHUB_WORKFLOW || '' } ` ) ;
233
+ core . warning ( ARTIFACT_NAME ) ;
234
+ core . warning ( comparisonBranch ) ;
235
+ core . warning ( __dirname ) ;
236
+ core . warning ( `${ process . env . GITHUB_WORKFLOW || '' } ` ) ;
237
237
core . endGroup ( ) ;
238
238
239
239
// Ignore failures here as it is likely that this only happens when introducing size-limit
@@ -246,12 +246,12 @@ async function run() {
246
246
workflowEvent : 'push' ,
247
247
workflowName : `${ process . env . GITHUB_WORKFLOW || '' } ` ,
248
248
} ) ;
249
- core . debug ( 'Downloaded base results' ) ;
250
- core . debug ( res ) ;
249
+ core . warning ( 'Downloaded base results' ) ;
250
+ core . warning ( res ) ;
251
251
base = JSON . parse ( await fs . readFile ( resultsFilePath , { encoding : 'utf8' } ) ) ;
252
252
} catch ( error ) {
253
253
core . startGroup ( 'Warning, unable to find base results' ) ;
254
- core . debug ( error ) ;
254
+ core . warning ( error ) ;
255
255
core . endGroup ( ) ;
256
256
}
257
257
You can’t perform that action at this time.
0 commit comments