Skip to content

Add GitHub Actions workflows for deployment and linting; configure Vite for GitHub Pages #1

Add GitHub Actions workflows for deployment and linting; configure Vite for GitHub Pages

Add GitHub Actions workflows for deployment and linting; configure Vite for GitHub Pages #1

Workflow file for this run

name: Lint Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
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 Biome lint
run: bun run lint