Clarify prop drilling and introduce Context API #3358
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: 🔍 Lint / Type Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: read | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install tools & dependencies | |
| uses: ./.github/actions/install | |
| - name: TypeScript check | |
| run: pnpm check:types | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install tools & dependencies | |
| uses: ./.github/actions/install | |
| - name: Lint code | |
| run: pnpm check:lint | |
| - name: Check formatting | |
| run: pnpm exec prettier . --check |