feat: add 'max' effort level and propagate effort setting to Claude SDK #297
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: Expo App TypeScript typecheck | |
| on: | |
| pull_request: | |
| paths: | |
| - 'packages/happy-app/**' | |
| - '.github/workflows/typecheck.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'packages/happy-app/**' | |
| - '.github/workflows/typecheck.yml' | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: TypeScript typecheck | |
| run: pnpm --filter happy-app typecheck |