From 7ed7461a2bd697feecf0dd3e4eff5a4df2f2e5d2 Mon Sep 17 00:00:00 2001 From: Juan Sebastian Montoya Date: Tue, 6 May 2025 18:39:02 -0500 Subject: [PATCH] chore: update turbo.json and CI workflow for Prisma integration - Modified turbo.json to replace db:generate with prisma:generate in build and dev tasks. - Enhanced CI workflow by adding a name to the validations job for better clarity. --- .forgejo/workflows/ci.yaml | 1 + turbo.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 1afa3e5..9e88b7f 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -2,6 +2,7 @@ name: Lint and Check Types on: [push] jobs: validations: + name: Validations runs-on: docker steps: - name: Checkout diff --git a/turbo.json b/turbo.json index 3e7b554..e8b5eb3 100644 --- a/turbo.json +++ b/turbo.json @@ -23,7 +23,7 @@ ], "tasks": { "build": { - "dependsOn": ["^build", "^db:generate"], + "dependsOn": ["^build", "^prisma:generate"], "inputs": [".env*"], "outputs": ["dist/**"] }, @@ -34,11 +34,11 @@ "dependsOn": ["^check-types"] }, "dev": { - "dependsOn": ["^db:generate"], + "dependsOn": ["^prisma:generate"], "cache": false, "persistent": true }, - "db:generate": { + "prisma:generate": { "cache": false }, "start": {