Skip to content

feat: add guest comment support #242

feat: add guest comment support

feat: add guest comment support #242

Workflow file for this run

name: CI
on:
push:
branches:
- main
- trunk
pull_request:
branches:
- main
- trunk
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.3.13
- name: Install dependencies
run: bun install
- name: Run typecheck
run: bun run check
- name: Run format check
run: bun run format:check