Skip to content

chore: update dependencies and add file search utility #23

chore: update dependencies and add file search utility

chore: update dependencies and add file search utility #23

Workflow file for this run

name: CI - Biome and TypeScript
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run biome and typescript checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run TypeScript checks
run: bun tsc --noEmit
- name: Run Biome check
run: bun biome ci .
- name: Run tests
run: bun test