style: 优化脚注的样式 #784
Workflow file for this run
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
| # ============================================================================= | |
| # PR: Spell Check — 拼写检查 | |
| # | |
| # 触发时机: 提交 PR 时自动运行 | |
| # 功能: 复用 TDesign 共享 workflow 检查代码中的拼写错误 | |
| # ============================================================================= | |
| name: 'PR: Spell Check' | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run: | |
| uses: TDesignOteam/workflows/.github/workflows/spell-check.yml@main |