-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (36 loc) · 873 Bytes
/
Copy pathtypecheck.yml
File metadata and controls
40 lines (36 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Vize Type Check
on:
pull_request:
branches:
- main
paths:
- "src/**"
- "musea/**"
- "config/**"
- "types/**"
- "package.json"
- "pnpm-workspace.yaml"
- "pnpm-lock.yaml"
- "vize.config.ts"
- "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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- 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