From b32b7b3906f44f7be9fc565ac3aca9d001d11b40 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 11:59:18 +0000 Subject: [PATCH 1/3] Initial plan From 6f272b60a3367473882847e2f151a794e735ed51 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:02:32 +0000 Subject: [PATCH 2/3] fix: add non-null assertions in helmetData tests; run CI on all branches Co-authored-by: staylor <52932+staylor@users.noreply.github.com> --- .github/workflows/ci.yml | 2 -- __tests__/server/helmetData.test.tsx | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1a09833..9374658e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,7 @@ name: CI on: push: - branches: [main] pull_request: - branches: [main] jobs: build: diff --git a/__tests__/server/helmetData.test.tsx b/__tests__/server/helmetData.test.tsx index 0c2ec67f..66d3d8fe 100644 --- a/__tests__/server/helmetData.test.tsx +++ b/__tests__/server/helmetData.test.tsx @@ -25,7 +25,7 @@ describe('Helmet Data', () => { ); - const head = helmetData.context.helmet; + const head = helmetData.context.helmet!; expect(head.base).toBeDefined(); expect(head.base.toString).toBeDefined(); @@ -41,7 +41,7 @@ describe('Helmet Data', () => { ); - const head = helmetData.context.helmet; + const head = helmetData.context.helmet!; expect(head.base).toBeDefined(); expect(head.base.toString).toBeDefined(); @@ -62,7 +62,7 @@ describe('Helmet Data', () => { ); - const head = helmetData.context.helmet; + const head = helmetData.context.helmet!; expect(head.base).toBeDefined(); expect(head.base.toString).toBeDefined(); From 4027486893ab99b4a20b860251a7a528f0159c9d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:07:01 +0000 Subject: [PATCH 3/3] ci: run only on push to avoid duplicate workflow runs Co-authored-by: staylor <52932+staylor@users.noreply.github.com> --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9374658e..c92e711e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,6 @@ name: CI on: push: - pull_request: jobs: build: