Skip to content

Commit

Permalink
ci: fix markdownlint command in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lumpinif committed Nov 21, 2024
1 parent c90d4a9 commit bc3fd13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: markdownlint-cli2-action
- name: Install and run markdownlint
id: markdownlint
run: |
bun add -g markdownlint-cli2
bun markdownlint-cli2-fix "**/*.md"
bun install markdownlint-cli2
bunx markdownlint-cli2-fix "**/*.md"
- name: Commit fixes
run: |
if [[ -n $(git status --porcelain) ]]; then
Expand Down

0 comments on commit bc3fd13

Please sign in to comment.