Skip to content

Release Notes 202604 #1968

Release Notes 202604

Release Notes 202604 #1968

Workflow file for this run

name: Lint Markdown
on:
push:
branches:
- main
pull_request:
jobs:
markdownlint:
name: Is formatting great?
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install markdownlint-cli2
run: npm install -g markdownlint-cli2
- name: Run markdownlint-cli2
run: markdownlint-cli2 "docs/**/*.md" "_includes/pbc/**/*.md" "#node_modules"