File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56309,7 +56309,8 @@ async function eslintJsonReportToJs(reportFilesGlob) {
56309
56309
const files = await globber.glob();
56310
56310
const uniqueFiles = [...new Set(files)];
56311
56311
// Log number of files found
56312
- core.debug(`Found ${files.length} ESLint report files to process`);
56312
+ core.debug(`Found ${files.length} ESLint report files to process \n\n ${files.join('\n')}`);
56313
+ core.debug(`Unique files: ${uniqueFiles.join('\n')}`);
56313
56314
if (uniqueFiles.length === 0) {
56314
56315
core.warning(`No ESLint report files found matching pattern: ${reportFilesGlob}`);
56315
56316
return [];
Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ export default async function eslintJsonReportToJs(reportFilesGlob: string): Pro
56
56
const uniqueFiles = [ ...new Set ( files ) ]
57
57
58
58
// Log number of files found
59
- core . debug ( `Found ${ files . length } ESLint report files to process` )
59
+ core . debug ( `Found ${ files . length } ESLint report files to process \n\n ${ files . join ( '\n' ) } ` )
60
+ core . debug ( `Unique files: ${ uniqueFiles . join ( '\n' ) } ` )
60
61
61
62
if ( uniqueFiles . length === 0 ) {
62
63
core . warning ( `No ESLint report files found matching pattern: ${ reportFilesGlob } ` )
You can’t perform that action at this time.
0 commit comments