Skip to content

fix: style

fix: style #21

Workflow file for this run

name: VP 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'
- 'eslint.config.mjs'
- 'nuxt.config.ts'
- 'tsconfig.json'
- 'server/tsconfig.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@be55d5df2da88a2387a2e6764871ca9e5387e187 # v1
with:
node-version: '24'
cache: true
- name: Install dependencies
run: vp install
- name: Run vp check
run: vp check
env:
CI: true