Skip to content

feat:mac系统增强工具 #28

feat:mac系统增强工具

feat:mac系统增强工具 #28

name: AutoCorrect Markdown Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
autocorrect:
name: Check and Auto-fix Markdown Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
- name: Install and run format
run: |
# 安装 autocorrect
curl -sSL https://raw.githubusercontent.com/huacnlee/autocorrect/main/install | sh
# 修复文件格式
autocorrect --fix
# 安装并运行 prettier
npm install -g prettier
prettier --write .
# 检查是否有文件更改
- name: Check for changes
run: git diff --exit-code || git status
# 如果有更改,则配置 Git 提交用户名和邮箱,并提交更改
- name: Commit changes
if: failure()
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "fix(typo): Fix Markdown formatting"
git push origin HEAD:main