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 22, 2024
1 parent dce73d8 commit ba6f871
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@ const tableData = [
{data: 'Status', header: true},
{data: 'Description', header: true},
{data: 'Duration (HH:MM:SS)', header: true}
]
];

let t = [];

Check failure on line 57 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

Variable 't' implicitly has type 'any[]' in some locations where its type cannot be determined.
arrayOfStringArrays.forEach(subArray => {
t.push(subArray);
});
core.summary
.addHeading('MATLAB Build Results')
.addTable([tableData,t])
.addTable([tableDatat],[t])

Check failure on line 63 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

Cannot find name 'tableDatat'. Did you mean 'tableData'?

Check failure on line 63 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

Expected 1 arguments, but got 2.

Check failure on line 63 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

Variable 't' implicitly has an 'any[]' type.
.write()
}

0 comments on commit ba6f871

Please sign in to comment.