feat: 改进 Tailwind CSS v5 开发体验 #125
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: Package README Quality | |
| on: | |
| pull_request: | |
| paths: | |
| - 'packages/*/README*.md' | |
| - 'packages/*/package.json' | |
| - 'packages-runtime/*/README*.md' | |
| - 'packages-runtime/*/package.json' | |
| - scripts/check-package-readmes.mjs | |
| - .github/workflows/package-readme-quality.yml | |
| push: | |
| branches: [main, next] | |
| paths: | |
| - 'packages/*/README*.md' | |
| - 'packages/*/package.json' | |
| - 'packages-runtime/*/README*.md' | |
| - 'packages-runtime/*/package.json' | |
| - scripts/check-package-readmes.mjs | |
| - .github/workflows/package-readme-quality.yml | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate published package READMEs | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Validate bilingual package READMEs | |
| run: node scripts/check-package-readmes.mjs |