You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
658 B
35 lines
658 B
# Workspace validation using Vite+
|
|
name: Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Set up Vite+
|
|
uses: voidzero-dev/setup-vp@v1
|
|
with:
|
|
node-version: '25.8.1'
|
|
cache: true
|
|
- name: Installation
|
|
run: vp install
|
|
- name: Check
|
|
run: vp check
|
|
- name: Test
|
|
run: vp test
|