Skip to content

Update pnpm to v11.0.6 #61

Update pnpm to v11.0.6

Update pnpm to v11.0.6 #61

Workflow file for this run

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@4f5aa3e38c781f1b01e78fb9255527cee8a6efa6 # v1
with:
node-version: "24"
cache: true
- name: Install dependencies
run: vp install
- name: Run type check
run: vp run typecheck
env:
CI: true