Update dependency typebox to v1.2.10 #597
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check (lint + format) | |
| run: pnpm run check | |
| - name: Run tests | |
| run: pnpm run test | |
| - name: Build | |
| run: pnpm run build | |
| - name: Run smoke eval suite | |
| run: pnpm run eval:suite | |
| - name: Verify CLI works | |
| run: node dist/index.js --help |