Skip to content

Commit

Permalink
Merge pull request #391 from Amazingkenneth/master
Browse files Browse the repository at this point in the history
Bypass Push Rules for GitHub Action
  • Loading branch information
Amazingkenneth committed Aug 14, 2023
2 parents caf934f + 12026d5 commit 2fbee6a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ name: Format Docs and Code
on: [push, pull_request]

jobs:
prettier:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
ssh-key: ${{ secrets.ACTION_PUSH }}

- name: Use lint-md to format Markdown
# For issues of Chinese characters in prettier:
# https://github.com/prettier/prettier/blob/e22a5516f5b2c44e6d68be4c0a7ba0b32c1b9f86/website/blog/2023-07-05-3.0.0.md?plain=1#L27
run: |
npm install --save-dev --save-exact @lint-md/cli
lint-md ./**/* --fix
- name: Prettify code
uses: creyD/[email protected]
Expand Down

0 comments on commit 2fbee6a

Please sign in to comment.