From 73d0968f2b472d7f646fa521bed90320e7925e45 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 10 May 2026 23:49:27 -0700 Subject: [PATCH 1/2] ci: trigger PR workflow for pipeline validation --- TEST_TRIGGER.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 TEST_TRIGGER.md diff --git a/TEST_TRIGGER.md b/TEST_TRIGGER.md new file mode 100644 index 0000000..3a8631f --- /dev/null +++ b/TEST_TRIGGER.md @@ -0,0 +1,4 @@ +# CI Pipeline Test Trigger + +This file is used to trigger the PR workflow for testing the CI pipeline. +Remove this file after validation is complete. \ No newline at end of file -- 2.52.0 From ee868270841aae7bbb65cdebf8eb53b7062facee Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 10 May 2026 23:56:49 -0700 Subject: [PATCH 2/2] fix: add DATABASE_URL env to unit tests step in PR workflow --- .gitea/workflows/pr.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 0096e89..19efd7e 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -30,6 +30,8 @@ jobs: - name: Run unit tests run: bun test src/__tests__/unit/ src/__tests__/*.test.tsx src/__tests__/auth-simple.test.ts + env: + DATABASE_URL: postgresql://user:pass@localhost:5432/dummy build-and-deploy-ci: runs-on: ubuntu-latest -- 2.52.0