Skip to content

feat: wishlist sharing #4847

feat: wishlist sharing

feat: wishlist sharing #4847

Workflow file for this run

name: Docs
on:
push:
branches:
- develop
pull_request:
types: [opened, synchronize]
env:
NODE_VERSION: 18.16.0
jobs:
Docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install root dependencies
run: npm ci
- name: Check KB Labels
run: node docs/check-kb-labels
- name: Check Documentation Overview
run: node docs/check-documentation-overview
- name: Synchronize Automated Formly Documentation
run: npx ts-node docs/sync-formly-docs.ts --ci
- name: Run Formatting
run: npm exec npm-run-all format check-no-changes
- name: Fast Check Dead Links For All Files
run: node docs/check-dead-links.mjs fast
- name: Check Dead Links For Changed Files
if: github.ref != 'refs/heads/develop'
run: node docs/check-dead-links.mjs origin/develop