Skip to content

feat: 改进 Tailwind CSS v5 开发体验 #1097

feat: 改进 Tailwind CSS v5 开发体验

feat: 改进 Tailwind CSS v5 开发体验 #1097

Workflow file for this run

name: Release Gate
on:
pull_request:
types: [opened, synchronize]
paths-ignore:
- '**/*.md'
- '.changeset/**'
workflow_dispatch:
concurrency:
group: release-gate-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
release-gate:
name: Release Gate (ubuntu-latest, 24)
runs-on: ubuntu-latest
timeout-minutes: 30
env:
HUSKY: 0
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build release artifacts
run: pnpm build
- name: Verify release artifacts
run: pnpm release:verify