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 049436b
Showing 1 changed file with 2 additions and 2 deletions.
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 049436b

Please sign in to comment.