Skip to content

fix: 🧩 修复生成组件或生成Hooks失败时仍然显示正在生成中的提示 #14

fix: 🧩 修复生成组件或生成Hooks失败时仍然显示正在生成中的提示

fix: 🧩 修复生成组件或生成Hooks失败时仍然显示正在生成中的提示 #14

Workflow file for this run

name: Commit Message Check on PR
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: ^9.4.0
- name: Install Deps
run: pnpm i --no-frozen-lockfile
- name: Format
run: |
pnpm run format:ci
- name: Lint
run: pnpm run lint:ci