Skip to content

chore(tooling): add eslint-plugin-zod to base config #426

chore(tooling): add eslint-plugin-zod to base config

chore(tooling): add eslint-plugin-zod to base config #426

Workflow file for this run

name: Check types
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
type-check:
name: Type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install -D --frozen-lockfile
- name: Run Prettier to check formatting
run: bun run type-check