Skip to content

Commit 2554978

Browse files
committed
add wd, idg and remove gha component from coverage
1 parent c66dcaf commit 2554978

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

app/components/GithubActionsScheduledJobs.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function GithubActionsJob({
1515
"flex-row flex items-center content-center h-10 w-full text-center rounded-lg bg-gray-800 border-2 border-black hover:border-white"
1616
}
1717
>
18-
<h2 className={"text-center text-lg w-1/2"}>{repo}: </h2>
18+
<h2 className={"text-center text-lg w-1/2"}>{repo} </h2>
1919
<Image
2020
src={`https://github.com/ISISComputingGroup/${repo}/actions/workflows/${workflowName}/badge.svg`}
2121
alt={"ibex_bluesky_core lint-and-test-nightly badge"}
@@ -59,6 +59,14 @@ export default function GithubActionsScheduledJobs() {
5959
repo={"ibex_utils"}
6060
workflowName={"lint-and-test-nightly.yml"}
6161
/>
62+
<GithubActionsJob
63+
repo={"IBEX-device-generator"}
64+
workflowName={"lint-and-test-nightly.yml"}
65+
/>
66+
<GithubActionsJob
67+
repo={"WebDashboard"}
68+
workflowName={"lint-and-test-nightly.yml"}
69+
/>
6270
</div>
6371
);
6472
}

jest.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const config: Config = {
1717
"!**/*layout.tsx",
1818
"!app/_app.tsx",
1919
"!app/components/JenkinsJobs.tsx", // relies on an external fetch
20+
"!app/components/GithubActionsScheduledJobs.tsx", // relies on an external image (CI badge)
2021
"!app/components/InstrumentData.tsx", // relies on websocket
2122
"!app/wall/page.tsx", // relies on JenkinsJobs
2223
"!app/instruments/page.tsx", // no logic here

0 commit comments

Comments
 (0)