Skip to content
This repository was archived by the owner on Jul 24, 2026. It is now read-only.

test(formatting): characterize byte size formatting helpers (#159) #396

test(formatting): characterize byte size formatting helpers (#159)

test(formatting): characterize byte size formatting helpers (#159) #396

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
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: Lint
run: bun run lint
- name: Type check
run: bun run type-check
- name: Test
run: bun test
- name: Build
run: bun run build