Skip to content

PTL-1767: check changes in code for Presentation examples #4749

PTL-1767: check changes in code for Presentation examples

PTL-1767: check changes in code for Presentation examples #4749

Workflow file for this run

name: Build
# Triggered on PRs against main branches
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.11.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci --loglevel=error --no-update-notifier
- name: Build Docusaurus and check for broken links
run: npm run build
env:
BRANCH: ${{ github.base_ref }}
BASE_URL: /docs/
NODE_OPTIONS: "--max-old-space-size=8192"