Skip to content

build: bump actions/checkout from 6.0.0 to 6.0.1 #404

build: bump actions/checkout from 6.0.0 to 6.0.1

build: bump actions/checkout from 6.0.0 to 6.0.1 #404

Workflow file for this run

# This is a workflow for ensuring tests pass with the configured git submodules.
# It does not attempt to update the repos/branches specified in any submodules.
---
name: Test
on:
# Allow running this workflow manually from the Actions tab
workflow_dispatch:
pull_request:
jobs:
doc-checks:
name: Test documentation website
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
submodules: true
- name: Install local website package
working-directory: ./site
run: npm ci
- name: Ensure website builds
working-directory: ./site
run: npm run build