This repository was archived by the owner on Oct 27, 2025. It is now read-only.
chore: simplify to 1 page #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| ACTIONS_RUNNER_DEBUG: true | |
| jobs: | |
| check: | |
| name: 'Lint, Typecheck, Build' | |
| timeout-minutes: 3 | |
| runs-on: ['ubuntu-latest'] | |
| steps: | |
| - name: '🔑 Checkout' | |
| uses: actions/checkout@v5 | |
| - name: '🐰 Setup bun' | |
| uses: oven-sh/setup-bun@main | |
| with: | |
| bun-version: 'latest' | |
| - name: 'Install Dependencies' | |
| run: | | |
| yarn install --frozen-lockfile | |
| sudo apt-get update | |
| sudo apt-get install --yes --no-install-recommends fish | |
| - name: 'Expo Doctor' | |
| shell: fish {0} | |
| run: bun x rust-just@latest doctor | |
| - name: 'Lint & Format' | |
| run: | | |
| bun x @biomejs/biome check . --reporter='github' | |
| - name: 'Typecheck' | |
| run: bun typecheck |