Skip to content

chore(actions): Bump actions/setup-node from 6.4.0 to 7.0.0 #61

chore(actions): Bump actions/setup-node from 6.4.0 to 7.0.0

chore(actions): Bump actions/setup-node from 6.4.0 to 7.0.0 #61

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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: 'true'
- name: Run markdownlint
run: npm run lint:md