Skip to content

refactor(test): 优化测试套件 #14

refactor(test): 优化测试套件

refactor(test): 优化测试套件 #14

Workflow file for this run

name: BuildComponents
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run build:components
run: pnpm --filter cli build:components