This repository was archived by the owner on Mar 18, 2025. It is now read-only.
Merge remote-tracking branch 'origin/main' #142
This file contains hidden or 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: Normalize Markdown | |
on: | |
push: | |
paths: | |
- "*.md" | |
- "!docs/**.md" | |
jobs: | |
normalize: | |
timeout-minutes: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Prettify markdown | |
uses: creyD/prettier_action@v4.3 | |
with: | |
prettier_options: --write **/*.md |