Skip to content

Bump zod from 4.3.6 to 4.4.3 #36

Bump zod from 4.3.6 to 4.4.3

Bump zod from 4.3.6 to 4.4.3 #36

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
env:
DATABASE_URL: postgresql://user:pass@localhost:5432/db
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: 24
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.13
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Generate Prisma client
run: bunx --bun prisma generate
- name: Lint and format check
run: bun run check
- name: Type check
run: bun run types
- name: Test
run: bun run test