From 5993f8b3703a2a78318c4c53876446b1b3accc9f Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Wed, 1 Apr 2026 21:01:33 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20unused=20postgres/valkey=20serv?= =?UTF-8?q?ices=20from=20CI=20=E2=80=94=20tests=20are=20pure=20unit=20test?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ce89792..d836e98 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,33 +11,6 @@ jobs: ci: runs-on: ubuntu-latest - services: - postgres: - image: postgres:16 - env: - POSTGRES_USER: lunarfront - POSTGRES_PASSWORD: lunarfront - POSTGRES_DB: lunarfront_test - options: >- - --health-cmd pg_isready - --health-interval 5s - --health-timeout 3s - --health-retries 5 - - valkey: - image: valkey/valkey:8 - options: >- - --health-cmd "valkey-cli ping" - --health-interval 5s - --health-timeout 3s - --health-retries 5 - - env: - DATABASE_URL: postgresql://lunarfront:lunarfront@localhost:5432/lunarfront_test - REDIS_URL: redis://localhost:6379 - JWT_SECRET: ci-secret - NODE_ENV: test - steps: - name: Checkout uses: actions/checkout@v4 @@ -53,9 +26,5 @@ jobs: - name: Lint run: bun run lint - - name: Run migrations - working-directory: packages/backend - run: bunx drizzle-kit migrate - - name: Test run: bun run test