mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-18 13:25:52 +00:00
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:
parent
dcfdfa62ac
commit
986154da7c
1 changed files with 1 additions and 1 deletions
2
.github/actions/lint-reporter/action.yml
vendored
2
.github/actions/lint-reporter/action.yml
vendored
|
|
@ -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')) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue