Skip to content

Prompt to enable plugin after installation #49

Prompt to enable plugin after installation

Prompt to enable plugin after installation #49

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- "22"
- "24"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Vite+
uses: voidzero-dev/setup-vp@v1
with:
node-version: ${{ matrix.node-version }}
cache: true
- name: Install dependencies
run: vp install
- name: Typecheck
run: vp run typecheck
- name: Lint
run: vp lint
- name: Test
run: vp test
- name: Pack
run: vp pack
- name: Verify npm package contents
run: npm pack --dry-run