Skip to content

feat: added github workflow #1

feat: added github workflow

feat: added github workflow #1

Workflow file for this run

name: Lint & Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run lint and format checks
run: bun run check
- name: Build check
run: bun run build