docs: add admonition for incompatibility with *
and **
in Chinese and Japanese in MDX v2+
#106
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: Lint AutoFix | |
on: | |
pull_request: | |
branches: | |
- main | |
- docusaurus-v** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint-autofix: | |
name: Lint AutoFix | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.head_ref }} | |
- name: Installation | |
run: yarn | |
- name: AutoFix Format | |
run: yarn format | |
- name: AutoFix JS | |
run: yarn lint:js:fix | |
- name: AutoFix Style | |
run: yarn lint:style:fix | |
- name: AutoFix Spelling | |
run: yarn lint:spelling:fix | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'refactor: apply lint autofix' |