Skip to content

fix: various linter warnings #18

fix: various linter warnings

fix: various linter warnings #18

Workflow file for this run

name: Tests
on:
push:
branches: ['master']
pull_request:
branches: ['master']
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test