Skip to content

Use multiple markdownlint.yaml /versions and /schemas #142

Use multiple markdownlint.yaml /versions and /schemas

Use multiple markdownlint.yaml /versions and /schemas #142

name: validate-markdown
# Author: @ralfhandl based on work of @MikeRalphson
# Issue: https://github.com/OAI/Overlay-Specification/issues/53
#
# This workflow validates markdown files in the versions directory matching *.md
#
# run this on push to any branch and creation of pull-requests
on: [push, pull_request]
jobs:
mdv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # checkout repo content
with:
fetch-depth: 0
# - name: use the javascript environment from main
# run: |
# git checkout remotes/origin/main -- package.json package-lock.json .markdownlint.yaml
- uses: actions/setup-node@v4 # setup Node.js
with:
node-version: '20.x'
- name: Validate markdown
run: "npm run markdown:validate"
- name: Lint markdown
run: "npm run markdown:lint"