feat: error and empty states on Sonarr missing episodes page #7
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| backend: | |
| name: Go test + vet | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.22" | |
| - run: go mod download | |
| - run: go vet ./... | |
| - run: go test ./... | |
| frontend: | |
| name: Frontend lint + build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - working-directory: frontend | |
| run: bun install --frozen-lockfile | |
| - working-directory: frontend | |
| run: bun run lint | |
| - working-directory: frontend | |
| run: bun run build |