Skip to content

Releases: voidzero-dev/setup-vp

v1.0.0

04 Mar 13:16
v1
4a52413

Choose a tag to compare

Setup Vite+ (vp) GitHub Action — v1.0.0

The first stable release of the official GitHub Action for setting up
Vite+ in CI workflows.

Features

  • Install Vite+ globally via official install scripts (Linux, macOS, Windows)
  • Node.js version management — set up any Node.js version via vp env use
  • Dependency caching — auto-detects lock files (pnpm-lock.yaml, package-lock.json,
    yarn.lock) and caches package manager stores
  • Automatic vp install — optionally run install after setup, with support for custom cwd and
    args
  • Multi-project support — run install in multiple directories via YAML array config

Usage

steps:
  - uses: actions/checkout@v6
  - uses: voidzero-dev/setup-vp@v1
    with:
      node-version: "22"
      cache: true

Links