Skip to content

refactor: introduce vue-jsx #561

refactor: introduce vue-jsx

refactor: introduce vue-jsx #561

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [22.x, lts/*]
os:
- ubuntu-latest
# windows-latest, TODO: hash-sum result different with linux
- macos-latest
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install
run: pnpm install
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run typecheck
- name: Test
run: pnpm run test
- name: Docs Build
run: pnpm run docs:build
- name: Playground Build
run: pnpm run play:build