Changelog 2024.0831 #19
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: Check markdown format | |
on: | |
pull_request: | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prettify code | |
uses: creyD/[email protected] | |
with: | |
# same as npx prettier --check ./content/**/*.md | |
# if ci failed, try to run `npx prettier --write ./content/**/*.md` to fix it | |
prettier_options: --check ./content/**/*.md |