Skip to content

docs: update canonical site URL and CI path filters (#21) #27

docs: update canonical site URL and CI path filters (#21)

docs: update canonical site URL and CI path filters (#21) #27

Workflow file for this run

name: CI Site
on:
push:
branches: [main]
paths:
- 'packages/site/**'
- '.github/workflows/ci-site.yml'
pull_request:
branches: [main]
paths:
- 'packages/site/**'
- '.github/workflows/ci-site.yml'
jobs:
build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
working-directory: packages/site
run: bun install
- name: Type Check
working-directory: packages/site
run: bun run typecheck
- name: Format Check
working-directory: packages/site
run: bun run format:check
- name: Build
working-directory: packages/site
run: bun run build
env:
VITE_CONVEX_URL: ${{ secrets.VITE_CONVEX_URL }}