Skip to content

Release PR comment alert type #1769

Release PR comment alert type

Release PR comment alert type #1769

Workflow file for this run

# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors
# SPDX-License-Identifier: Apache-2.0
name: Test documentation
on:
workflow_call:
pull_request:
paths:
- "docs/**"
jobs:
test-deploy:
name: Test doc deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: ./docs
- name: Test build website
run: npm run build
working-directory: ./docs