feat(happy-app): metadata-driven model/mode selection with sync mode … #101
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: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: TypeScript typecheck | |
| run: yarn workspace happy-app typecheck |