Skip to content

Start readme (#2)

Start readme (#2) #4

Workflow file for this run

name: Markdown Lint
on:
push:
branches:
- main
pull_request:
paths:
- '**.md'
- '.markdownlint.json'
- '.github/workflows/markdown-lint.yml'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5.0.1
- name: Setup Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run markdown linter
run: npm run lint:md