Skip to content

Update actions/checkout action to v7 #137

Update actions/checkout action to v7

Update actions/checkout action to v7 #137

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build Content
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24.x
cache: yarn
cache-dependency-path: documentation/yarn.lock
- name: Install Dependencies
working-directory: documentation
run: yarn install --frozen-lockfile
- name: Build website
working-directory: documentation
run: yarn build