perf(web-player): stream worker-parsed EPG in chunks to avoid main-thread freeze #724
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Type check and lint | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| - run: corepack enable | |
| - run: pnpm install --frozen-lockfile | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: pnpm run type-check | |
| - run: pnpm run lint |