feat: 改进 Tailwind CSS v5 开发体验 #1097
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |