feat: add tax type settings for budgets (#99165) #4859
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |