Skip to content

Commit 7f11e80

Browse files
committed
fix(ci): add Prisma client generation to ci-cd workflow
The ci-cd.yml workflow was missing the `yarn prisma generate` step, causing tests to fail with "Cannot find module '../../../generated/prisma/client'". This was already added to pr-test.yml but missing from ci-cd.yml.
1 parent 3f8f13d commit 7f11e80

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ jobs:
5252
- name: Install dependencies
5353
run: yarn install --frozen-lockfile
5454

55+
- name: Generate Prisma client
56+
run: yarn prisma generate
57+
5558
- name: Run linting
5659
run: yarn lint
5760

0 commit comments

Comments
 (0)