Skip to content

Commit

Permalink
Create markdown-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
51nk0r5w1m authored Oct 17, 2024
1 parent 66cd0c9 commit dfbfae1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Markdown Lint

on:
pull_request:
push:
branches:
- master
- develop
- feature/*

jobs:
markdown-lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install markdownlint-cli
run: npm install -g markdownlint-cli

- name: Run markdownlint
run: markdownlint '**/*.md'

0 comments on commit dfbfae1

Please sign in to comment.