Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ on:
- dev
paths:
- "packages/backend/**"
- "packages/prisma-client/**"
- ".github/workflows/backend-ci.yaml"
pull_request:
paths:
- "packages/backend/**"
- "packages/prisma-client/**"
- ".github/workflows/backend-ci.yaml"

concurrency:
group: docker-build-${{ github.ref }}
Expand All @@ -23,16 +27,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 24
- name: Setup Node.js & pnpm
uses: ./.github/actions/setup

- name: Install dependencies
run: pnpm install --filter=@hallmaster/backend --frozen-lockfile
run: pnpm install --filter=@hallmaster/backend... --frozen-lockfile

- name: Generate Prisma types
run: pnpm --filter=@hallmaster/backend prisma:generate
Expand Down
Loading