Files
nocodb/.github/workflows/validate-docs-links.yml
Anbarasu d1477c725d chore: bump to node 22 wip (#10065)
* chore: bump to node 22

* chore: add non-enumerable config to clones

Signed-off-by: mertmit <mertmit99@gmail.com>

---------

Signed-off-by: mertmit <mertmit99@gmail.com>
Co-authored-by: mertmit <mertmit99@gmail.com>
2024-12-20 14:23:01 +03:00

29 lines
621 B
YAML

name: "Validate: Docs"
on:
# Triggered manually
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize, ready_for_review, labeled]
branches: [develop]
paths:
- "packages/noco-docs/**"
jobs:
validate-docs:
runs-on: [self-hosted, aws]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 22.12.0
- name: Build docs
run: |
cd packages/noco-docs
npm install
npm run generate
npm run remark:once