Skip to content

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

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 #31

Workflow file for this run

name: Build Test
# Mirrors the build steps from deploy-docs.yml so that any PR that would
# break the deploy fails CI here first. Runs unconditionally on every PR
# and every push to main, providing the always-on required status check
# for branch protection. The deploy-only steps (WordPress upload,
# translation, GitHub release) are not exercised — they require live
# external services and run only on tag.
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build governance docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Install pandoc
uses: pandoc/actions/setup@86321b6dd4675f5014c611e05088e10d4939e09e # v1.1.1
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: '24'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: 'true'
- name: Build standalone HTML pages
run: npm run build:html
- name: Build combined PDF
run: npm run build:pdf
env:
PUPPETEER_EXECUTABLE_PATH: /usr/bin/google-chrome-stable