Skip to content

Commit

Permalink
ci: add prisma:generate
Browse files Browse the repository at this point in the history
  • Loading branch information
iamnivekx committed Apr 24, 2024
1 parent 5be9fe5 commit 93fc0b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
branches: '**'
push:
branches: [dev, main]
branches: [dev, develop, main]

# Cancel in-progress workflow runs on PRs when a new commit is pushed.
# Does not cancel any runs on `develop` or `master` branches.
Expand All @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
node: [18]
timeout-minutes: 10

steps:
Expand All @@ -33,5 +33,7 @@ jobs:
run: pnpm install
- name: Run Prettier
run: pnpm run format:check
- name: Run prisma genarate
run: pnpm run prisma:generate
- name: Run test
run: pnpm run test

0 comments on commit 93fc0b2

Please sign in to comment.