Skip to content

Commit

Permalink
Testing JSON parse
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed May 21, 2024
1 parent 99c22bf commit a436975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -36,8 +36,8 @@ async function run() {
startupOptions
);
const runId = process.env.GITHUB_RUN_ID;
const data = await buildSummary.readJsonFile("/tmp/buildSummary_" + runId + ".json")
buildSummary.addBuildSummaryTable(data)
const data = await buildSummary.readJsonFile("/tmp/buildSummary_" + runId + ".json");

Check failure on line 39 in src/index.ts

GitHub Actions / Build and Test

Property 'readJsonFile' does not exist on type 'typeof import("/home/runner/work/run-build/run-build/src/buildSummary")'.
buildSummary.addBuildSummaryTable(data);

Check failure on line 40 in src/index.ts

GitHub Actions / Build and Test

Property 'addBuildSummaryTable' does not exist on type 'typeof import("/home/runner/work/run-build/run-build/src/buildSummary")'.

}

0 comments on commit a436975

Please sign in to comment.