Add GitHub features analysis and implementation roadmap #1024
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: CI — Typecheck & Lint | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| typecheck-and-lint: | |
| name: Typecheck & Lint | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ['22.x'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| # fetch full history to be consistent with other workflows | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Typecheck (tsc) | |
| run: npx tsc --noEmit --pretty | |
| - name: Lint (eslint) | |
| run: npx eslint "react/**/*.{js,jsx,ts,tsx}" |