Update to node22, fix vscode imports, fix doc builds, remove logs #13
Workflow file for this run
This file contains hidden or 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: Documentation | |
| on: | |
| push: | |
| branches: [main, develop] | |
| paths: | |
| - "src/**" | |
| - "examples/**" | |
| - "datalayer_core/**" | |
| - "typedoc.json" | |
| - "pyproject.toml" | |
| - ".github/workflows/docs.yml" | |
| pull_request: | |
| branches: [main, develop] | |
| paths: | |
| - "src/**" | |
| - "examples/**" | |
| - "datalayer_core/**" | |
| - "typedoc.json" | |
| - "pyproject.toml" | |
| - ".github/workflows/docs.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| docs: | |
| name: Generate Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| npm install --workspaces | |
| pip install .[docs] | |
| - name: Build documentation | |
| run: npm run docs |