Skip to content

Commit

Permalink
feat: render job url
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Aug 17, 2023
1 parent ec058b3 commit 1ea407b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion aggregate-into-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,14 @@ inputs.forEach((input, index) => {
// extract TestMetadata & version
const metadata = input[TestMetadata]["meta"];
const version = metadata['version'];
const jobURL = metadata['job_url'];

const col = [name, version];
let versionCell = version
if (jobURL) {
versionCell = `[${version}](${jobURL})`;
}

const col = [name, versionCell];

// extract results
groups.forEach(({ group, key }) => {
Expand Down

0 comments on commit 1ea407b

Please sign in to comment.