Skip to content

chore: cleanup logs and comments #106

chore: cleanup logs and comments

chore: cleanup logs and comments #106

Workflow file for this run

name: Validate
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run Checks
run: bun check
- name: Build
run: bun run build
- name: Tests
run: bun run test:coverage