Skip to content

chore: update CI to run lint and type-check, deploy only runs after C… #6

chore: update CI to run lint and type-check, deploy only runs after C…

chore: update CI to run lint and type-check, deploy only runs after C… #6

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
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
- name: 🔍 Run ESLint
run: bun run lint
- name: 🔍 Run TypeScript check
run: bun run type-check
- name: 🛠️ Build project
run: bun run build