Skip to content

Commit

Permalink
not super happy with this but ok
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Feb 24, 2025
1 parent 8f00b1f commit d5f5bde
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
run: npm run build:icons

- name: 🛠 Setup Database
run: npx prisma migrate deploy && npx prisma generate
run:
npx prisma migrate deploy && npx prisma generate && npx prisma
generate --sql

- name: 🔬 Lint
run: npm run lint
Expand All @@ -64,7 +66,9 @@ jobs:
run: npm run build:icons

- name: 🛠 Setup Database
run: npx prisma migrate deploy && npx prisma generate
run:
npx prisma migrate deploy && npx prisma generate && npx prisma
generate --sql

- name: 🔎 Type check
run: npm run typecheck --if-present
Expand All @@ -91,7 +95,9 @@ jobs:
run: npm run build:icons

- name: 🛠 Setup Database
run: npx prisma migrate deploy && npx prisma generate
run:
npx prisma migrate deploy && npx prisma generate && npx prisma
generate --sql

- name: ⚡ Run vitest
run: npm run test -- --coverage
Expand Down Expand Up @@ -119,7 +125,9 @@ jobs:
run: npm run test:e2e:install

- name: 🛠 Setup Database
run: npx prisma migrate deploy && npx prisma generate
run:
npx prisma migrate deploy && npx prisma generate && npx prisma
generate --sql

- name: 🏦 Cache Database
id: db-cache
Expand Down

0 comments on commit d5f5bde

Please sign in to comment.