Skip to content

Update Vize packages #159

Update Vize packages

Update Vize packages #159

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