From e88b953c5800d9d34b0cc8f2867078506ffecf91 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 19 Oct 2024 17:18:44 -0400 Subject: [PATCH] Give up trying to docker in docker, just install postgres --- .gitea/workflows/test.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 929999e..5a0803e 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -8,10 +8,14 @@ jobs: container: mcr.microsoft.com/playwright:v1.48.1-jammy steps: - uses: actions/checkout@v4 - - name: Install docker - uses: papodaca/install-docker-action@main - - name: Setup PG Data Dir - run: mkdir -p ./data-test + - uses: ikalnytskyi/action-setup-postgres@v6 + with: + username: postgres + password: testpassword + database: test + port: 5434 + postgres-version: "14" + ssl: "on" - name: Run Tests env: NODE_OPTIONS=--max-old-space-size=8192 run: |