Skip to content

feat(*): finishing touches for V0 #7

feat(*): finishing touches for V0

feat(*): finishing touches for V0 #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
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: Typechecking
run: bun run check
- name: Running tests
run: bun run test