Skip to content

feat: vize

feat: vize #7

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'
- 'vitest.config.ts'
- 'nuxt.config.ts'
- 'tsconfig.json'
- 'tsconfig.vize.json'
- 'server/tsconfig.json'
- 'scripts/vize-typecheck.mjs'
- '.github/workflows/typecheck.yml'
permissions:
contents: read
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: pnpm
- name: Enable pnpm
run: corepack enable
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Vize CLI
run: cargo install --git https://github.com/ubugeeei/vize --tag v0.63.0 --locked vize
- name: Run type check
run: pnpm typecheck
env:
CI: true