mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 22:08:33 +00:00
* 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>
29 lines
621 B
YAML
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
|