Skip to content

test: add unit tests for diff-view pure functions #39

test: add unit tests for diff-view pure functions

test: add unit tests for diff-view pure functions #39

Workflow file for this run

name: klaatcode-ci
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Unit tests
run: bun test
- name: Bench fixture selfcheck
run: bun run bench:selfcheck
- name: Build bundle
run: bun run build