Skip to content

chore(actions): Bump actions/checkout from 6.0.3 to 7.0.1 #62

chore(actions): Bump actions/checkout from 6.0.3 to 7.0.1

chore(actions): Bump actions/checkout from 6.0.3 to 7.0.1 #62

Workflow file for this run

name: Markdown Lint
on:
push:
paths:
- '**/*.md'
- '.markdownlint.yml'
- '.github/workflows/markdown-lint.yml'
pull_request:
paths:
- '**/*.md'
- '.markdownlint.yml'
- '.github/workflows/markdown-lint.yml'
jobs:
lint:
name: Lint Markdown
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: 'true'
- name: Run markdownlint
run: npm run lint:md