fix: Add accessible attribute to the xml tree in case of useJSONSourc… #6605
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: Build Docs | |
on: | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'tsconfig.json' | |
- 'scripts/build-docs.js' | |
- 'package*.json' | |
- 'lib/**/*.ts' | |
- 'lib/**/*.js' | |
- 'docs/**' | |
- '.github/workflows/docs.yml' # this file | |
- '!ci-jobs/**' | |
- '!**/test/**' | |
push: | |
branches: [ master ] | |
paths: | |
- 'tsconfig.json' | |
- 'scripts/build-docs.js' | |
- 'package*.json' | |
- 'lib/**/*.ts' | |
- 'lib/**/*.js' | |
- 'docs/**' | |
- '.github/workflows/docs.yml' # this file | |
- '!ci-jobs/**' | |
- '!**/test/**' | |
jobs: | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- run: npm install | |
name: Install dependencies | |
- name: Install dependencies (Python) | |
run: npm run install-docs-deps | |
- name: Build Docs | |
run: npm run build:docs |