build(deps-dev): bump vite from 8.0.1 to 8.0.5 in the npm_and_yarn group across 1 directory #1596
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@e3914758a49697077f7bcd190d36582a61667aad | |
| with: | |
| bun-version: 1.3.10 | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Peer deps | |
| run: bun run check:peers | |
| - name: Lint | |
| run: bun run lint | |
| - name: Test | |
| run: bun run test | |
| - name: Coverage | |
| run: bun run coverage | |
| - name: ClawHub CLI Verify | |
| run: bun run --cwd packages/clawhub verify | |
| - name: Typecheck | |
| run: | | |
| bunx tsc --noEmit | |
| bunx tsc -p packages/schema/tsconfig.json --noEmit | |
| bunx tsc -p packages/clawhub/tsconfig.json --noEmit | |
| - name: Build | |
| run: bun run build |