From c0ee71ccc8455ddc7f99e52a04d83149e6a88616 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 4 May 2026 23:32:15 +0530 Subject: [PATCH] chore: update CI workflow to use explicit db host and port mapping --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ae62a1..8d2d57e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,8 @@ env: DB_NAME: piku_test_db DB_USER: test DB_PASSWORD: password123 + DB_HOST: 127.0.0.1 + DB_PORT: 5442 jobs: setup-environment: @@ -74,11 +76,8 @@ jobs: POSTGRES_USER: ${{ env.DB_USER }} POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }} ports: - - 5432 + - 5442:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 - env: - DB_HOST: 127.0.0.1 - DB_PORT: ${{ job.services.postgres.ports['5432'] }} defaults: run: working-directory: ./backend