Skip to content

Add repository organization and filtering controls #266

Add repository organization and filtering controls

Add repository organization and filtering controls #266

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
validate:
name: Windows validation
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: npm
- name: Install dependencies
run: npm ci
- name: Check
run: npx --no-install vp check
- name: Typecheck
run: npx --no-install vp run typecheck
- name: Test
run: npx --no-install vp test
- name: Build
run: npx --no-install vp run build