Skip to content

[Do not merge] Bump rapids to 2608 #512

[Do not merge] Bump rapids to 2608

[Do not merge] Bump rapids to 2608 #512

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Validates Fern docs configuration on pull requests.
# Cheap config-only validation (no upstream content fetch) so this runs cleanly
# on fork PRs where repo secrets are unavailable.
# See fern/AUTODOCS_GUIDE.md and docs.yml `libraries`.
name: Fern docs (check)
on:
pull_request:
paths:
- 'fern/**'
- '.github/workflows/fern-docs-ci.yml'
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: Setup Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: '20'
- name: Validate Fern configuration
working-directory: ./fern
env:
FERN_TOKEN: ${{ secrets.DOCS_FERN_TOKEN }}
run: npm run check