Skip to content

quick and dirty fix to team edit #9

quick and dirty fix to team edit

quick and dirty fix to team edit #9

Workflow file for this run

name: Build and Test
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies and generate Prisma client
run: |
npm install
npx blitz prisma generate
- name: Run build
run: npm run build