Skip to content

docs: update README.md #96

docs: update README.md

docs: update README.md #96

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 10
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check
run: bun meta typecheck
- name: Lint
run: bun meta lint
- name: Test
run: bun test
- name: Build
run: bun meta build
- name: Run publint
run: bun meta publint