Skip to content

docs: add first-person hand polish plan #37

docs: add first-person hand polish plan

docs: add first-person hand polish plan #37

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
validate:
name: Format, Lint, Native Build, Typecheck, and Tests
runs-on: macos-latest
timeout-minutes: 20
env:
HOMEBREW_NO_AUTO_UPDATE: '1'
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install GLFW
run: brew install glfw
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check formatting
run: bun run format:check
- name: Run lint
run: bun run lint
- name: Build native bridge
run: bun run build:native
- name: Typecheck
run: bun run typecheck
- name: Run tests
run: bun test