Skip to content

Commit

Permalink
fix 8
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojs committed Mar 13, 2024
1 parent 0208941 commit 2451379
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
pnpm install
- name: Prepare
run: cp .env.example .env
run: |
cp .env.example .env
pnpm run db:generate
- name: TypeScript type checking
run: pnpm typecheck
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
run: |
pnpm i
cp .env.example .env
pnpm run db:generate
pnpm build
pnpm prune --prod --no-optional
rm .env
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:format": "prisma format",
"db:generate": "prisma generate",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc --noEmit"
Expand Down Expand Up @@ -66,4 +66,4 @@
"initVersion": "7.28.0"
},
"packageManager": "[email protected]"
}
}

0 comments on commit 2451379

Please sign in to comment.