Skip to content

chore: add CI workflow + smoke test #1

chore: add CI workflow + smoke test

chore: add CI workflow + smoke test #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun test --coverage
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: false