chore(deps): update dependency prettier to v3.9.4 #224
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
| # Workflow to build docs and deploy docs folder to GitHub pages | |
| name: deploy-docs | |
| on: | |
| # Runs on pushes to any branch when changes are made to docs or workflow | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/deploy-docs.yml" | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/deploy-docs.yml" | |
| jobs: | |
| deploy-docs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| steps: | |
| - uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@877aafa9f0732cbc91819b60d237c351ea88f95c # v1.0.34 | |
| with: | |
| node-version: "24" | |
| # Only deploy documentation from the main branch to prevent unauthorized changes | |
| - uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@877aafa9f0732cbc91819b60d237c351ea88f95c # v1.0.34 |