Skip to content

Commit

Permalink
fix: annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
graza-io committed Aug 22, 2023
1 parent af3527b commit 0fe26fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/annotate.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ export async function processAnnotations(input) {
startGroup("Processing output");
info("Fetching output");
const annotations = [];
const result = await parseResultFile("./check-output.json");
const result = await parseResultFile("check-output.json");
annotations.push(...getAnnotations(result));

info(`Pushing Annotations`);
await pushAnnotations(input, annotations);
utils.removeFiles(["./check-output.json"]);
utils.removeFiles(["check-output.json"]);
endGroup();
}

Expand Down

0 comments on commit 0fe26fe

Please sign in to comment.