Fix quality report formatting - remove empty line between title and status

- Changed lint-reporter action to display title and status on same line
- Before: Title on one line, empty line, then status on next line
- After: Title and status on same line for more compact display
- Affects all quality reports: Node.js linting, formatting, coverage, etc.
This commit is contained in:
Peter Steinberger 2025-06-28 13:59:47 +02:00
parent dcfdfa62ac
commit 986154da7c

View file

@ -42,7 +42,7 @@ runs:
const status = result === 'success' ? 'Passed' : 'Failed';
// Create section content
let sectionContent = `### ${title}\n${icon} **Status**: ${status}\n`;
let sectionContent = `### ${title} ${icon} **Status**: ${status}\n`;
// Special formatting for coverage reports
if (title.includes('Coverage')) {