Skip to content

feat: add inspect utility for debugging with optional labels; updat… #6

feat: add inspect utility for debugging with optional labels; updat…

feat: add inspect utility for debugging with optional labels; updat… #6

Workflow file for this run

name: CI Bun
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Test with Bun
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run lint
run: bun lint
- name: Run tests and coverage
run: bun test