Skip to content

chore: add CI workflow + smoke test #5

chore: add CI workflow + smoke test

chore: add CI workflow + smoke test #5

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 --coverage-reporter=lcov
- uses: codecov/codecov-action@v5
with:
files: ./coverage/lcov.info
fail_ci_if_error: true