diff --git a/dist/index.js b/dist/index.js index 4c8ff16..f334c84 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5809,6 +5809,8 @@ async function runEslint () { ? await gatherReportForEslintSevenOrGreater(paths) : gatherReportForEslintSixOrLower(paths) + core.debug(`Raw report from eslint: ${JSON.stringify(report, null, 2)}`) + const { results, errorCount, warningCount } = report const levels = ['', 'warning', 'failure'] diff --git a/src/main.js b/src/main.js index d4a3a47..6d1e761 100644 --- a/src/main.js +++ b/src/main.js @@ -116,6 +116,8 @@ async function runEslint () { ? await gatherReportForEslintSevenOrGreater(paths) : gatherReportForEslintSixOrLower(paths) + core.debug(`Raw report from eslint: ${JSON.stringify(report, null, 2)}`) + const { results, errorCount, warningCount } = report const levels = ['', 'warning', 'failure']