From ee868270841aae7bbb65cdebf8eb53b7062facee Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 10 May 2026 23:56:49 -0700 Subject: [PATCH] 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