chore: update turbo.json and CI workflow for Prisma integration
Some checks failed
Lint and Check Types / Validations (push) Failing after 52s
Some checks failed
Lint and Check Types / Validations (push) Failing after 52s
- 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.
This commit is contained in:
parent
c7911953df
commit
7ed7461a2b
2 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,7 @@ name: Lint and Check Types
|
|||
on: [push]
|
||||
jobs:
|
||||
validations:
|
||||
name: Validations
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue