fix!: resolve typecheck errors by upgrading to zod v4 and ai SDK 5.0.108 #7
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Nix | |
| uses: ./.github/actions/setup-nix | |
| - name: Initialise Nix environment | |
| run: nix develop --command true | |
| - name: Run Lint | |
| run: nix develop --command pnpm run lint | |
| - name: Run Type Check | |
| run: nix develop --command pnpm run typecheck | |
| - name: Run Build | |
| run: nix develop --command pnpm run build | |
| - name: Run Tests | |
| run: nix develop --command pnpm test |