Skip to content

Reduce module duration estimates by 45% and remove lab time projections #12

Reduce module duration estimates by 45% and remove lab time projections

Reduce module duration estimates by 45% and remove lab time projections #12

Workflow file for this run

name: Markdown Linting
on:
push:
branches: [main]
paths:
- "**/*.md"
- ".markdownlint.json"
pull_request:
branches: [main]
paths:
- "**/*.md"
- ".markdownlint.json"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install markdownlint-cli2
run: npm install -g markdownlint-cli2
- name: Run markdownlint
run: markdownlint-cli2 "**/*.md"