Skip to content

Upgrade GitHub Actions for Node 24 compatibility #214

Upgrade GitHub Actions for Node 24 compatibility

Upgrade GitHub Actions for Node 24 compatibility #214

Workflow file for this run

name: CI (docs)
on:
pull_request:
paths:
- ".github/workflows/ci-docs.yml"
- ".github/workflows/docs-pages.yml"
- "docs/**"
- "CHANGELOG.md"
push:
branches:
- main
paths:
- ".github/workflows/ci-docs.yml"
- ".github/workflows/docs-pages.yml"
- "docs/**"
- "CHANGELOG.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install docs dependencies
working-directory: docs
run: npm install --no-package-lock
- name: Build docs
working-directory: docs
run: npm run build