Skip to content

Commit

Permalink
Improve annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Apr 4, 2024
1 parent df49bca commit 0324e1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/annotations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function createAnnotationsFromIssues(issues: SourceFileIssue[]): void {
for (const issue of issues) {
const message = issue.message
const properties: core.AnnotationProperties = {

Check warning on line 7 in src/annotations.ts

View workflow job for this annotation

GitHub Actions / GitHub Actions Test

[Code PushUp | Code coverage] Line coverage

Lines 6-7 are not covered in any test case.
title: `${issue.plugin.title} | ${issue.audit.title}`,
title: `[Code PushUp | ${issue.plugin.title}] ${issue.audit.title}`,
file: issue.source.file,
startLine: issue.source.position?.startLine,
startColumn: issue.source.position?.startColumn,
Expand Down

0 comments on commit 0324e1c

Please sign in to comment.