Skip to content

feat: add guide pages #189

feat: add guide pages

feat: add guide pages #189

Workflow file for this run

name: CI
on:
pull_request:
branches:
- dev
- main
jobs:
ci:
name: Type Check, Lint, Test & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check
run: bun run check
- name: Lint
run: bun run lint
- name: Test
run: bun run test
- name: Build
run: bun run build