feat: allow filtering based on batch title #1776
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: Checks | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v4 | |
| - name: setup bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: lint | |
| run: bun run lint | |
| - name: check types | |
| run: bun run types |