From 5f9705a74073c32c95145874359dff32f56bc50a Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 17 May 2026 03:57:25 -0700 Subject: [PATCH] fix: remove redundant npm ci and prisma generate from build-and-deploy-ci build-and-deploy-ci only needs Docker, compose, and playwright from ci-base. npm ci and prisma generate run inside Docker build. Saves ~60s per PR run. --- .gitea/workflows/pr.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 61de885..046cd5f 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -44,14 +44,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install dependencies - run: npm ci --legacy-peer-deps - - - name: Generate Prisma client - run: npx prisma generate - env: - DATABASE_URL: postgresql://user:pass@localhost:5432/dummy - - name: Extract PR number and commit info id: info run: |