Skip to content

ci: pin Node.js version to 24.x in GitHub Actions workflows #223

ci: pin Node.js version to 24.x in GitHub Actions workflows

ci: pin Node.js version to 24.x in GitHub Actions workflows #223

Workflow file for this run

name: Markdown Lint
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
markdown_lint:
permissions:
contents: read
name: Lint Markdown files
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/aibom
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24.x'
- name: Install dependencies
run: npm ci
- name: Markdown Lint
run: npm run lint:markdown