File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1818 run : rm -rf node_modules .bun
1919 - name : Install dependencies
2020 run : bun install --frozen-lockfile --ignore-scripts
21+ - name : Install DB package dependencies
22+ working-directory : ./packages/db
23+ run : bun install --frozen-lockfile --ignore-scripts
2124 - name : Generate Prisma client
2225 working-directory : ./packages/db
2326 run : bunx prisma generate
Original file line number Diff line number Diff line change 2222 - name : Install dependencies
2323 run : bun install --frozen-lockfile --ignore-scripts
2424
25+ - name : Install DB package dependencies
26+ working-directory : ./packages/db
27+ run : bun install --frozen-lockfile --ignore-scripts
28+
2529 - name : Generate Prisma client
2630 working-directory : ./packages/db
2731 run : bunx prisma generate
Original file line number Diff line number Diff line change 1+ import 'dotenv/config' ;
12import path from 'node:path' ;
23import { defineConfig } from 'prisma/config' ;
34
You can’t perform that action at this time.
0 commit comments