Update dependency vitest to v4.1.8 #165
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: Vize Type Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "app/**" | |
| - "server/**" | |
| - "types/**" | |
| - "package.json" | |
| - "pnpm-workspace.yaml" | |
| - "pnpm-lock.yaml" | |
| - "vite.config.ts" | |
| - "tsconfig.json" | |
| - "tsconfig.vize.json" | |
| - ".github/workflows/typecheck.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Vite+ | |
| uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1 | |
| with: | |
| node-version: "24" | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| - name: Run type check | |
| run: vp run typecheck | |
| env: | |
| CI: true |