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 d4fcf67 commit 2e4895e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ const tableData = [
{data: 'Task Name', header: true},
{data: 'Status', header: true},
{data: 'Description', header: true},
{data: 'Duration (HH:MM:SS)', header: true}
{data: 'Duration (HH:MM:SS)', header: true},
arrayOfStringArrays.forEach(subArray => {
t.push(subArray);
});

Check failure on line 57 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

',' expected.
];

Check failure on line 58 in src/buildSummary.ts

View workflow job for this annotation

GitHub Actions / Build and Test

Declaration or statement expected.

let t = [];
arrayOfStringArrays.forEach(subArray => {
t.push(subArray);
});

core.summary
.addHeading('MATLAB Build Results')
.addTable([tableData.concat(t)])
.addTable([])
.write()
}

0 comments on commit 2e4895e

Please sign in to comment.