Added Markdownlint and static analysis

This commit is contained in:
Scott Gibb
2024-11-11 15:56:50 +00:00
parent fb30c35787
commit 83d70447a6
3 changed files with 48 additions and 23 deletions
+22
View File
@@ -0,0 +1,22 @@
name: Markdownlint
on: [push, pull_request]
jobs:
markdownlint:
name: Markdownlint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint '**/*.md'