feat(RichCell): add prop afterAlign #5566
Workflow file for this run
This file contains 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: 'Pull Request / Common' | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
concurrency: | |
group: pr-common-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
labels: | |
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action == 'opened' }} | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: Add labels | |
steps: | |
- name: Patch | |
if: ${{ startsWith(github.event.pull_request.title, 'fix') }} | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ["patch"] | |
}) | |
lint_codes_format: | |
runs-on: ubuntu-latest | |
name: Check code formatting | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node setup | |
uses: ./.github/actions/node-setup | |
- name: Run Prettier | |
run: yarn run lint:prettier |