Added support for Node.js 22 and removed support for Node.js 16. #331
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' | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
workflow_call: | |
jobs: | |
build-api-docs: | |
name: 'API Docs' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Setup Python' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: 'Build API Docs' | |
run: python docs/generate_api_docs.py | |
- name: 'Upload API Docs' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: api_docs.md | |
path: docs/api_docs.md | |