Skip to content

build(deps): bump @types/node from 24.3.1 to 24.4.0 (#2620) #778

build(deps): bump @types/node from 24.3.1 to 24.4.0 (#2620)

build(deps): bump @types/node from 24.3.1 to 24.4.0 (#2620) #778

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches:
- main
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20'
# Pre-check to validate that versions match between package.json
# and package-lock.json. Needs to run before npm install
- name: Validate package.json and package-lock.json versions
run: node version-check.js
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run docs
- name: Deploy docs
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.