chore(deps): update dependency node to v24.18.0 (#2250) #136
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
| # Builds the VuePress docs as a CI sanity check on every PR and push. | |
| # Deployment is handled by Cloudflare Pages directly from the repo, so this | |
| # workflow no longer publishes to GitHub Pages. | |
| name: Build Docs | |
| on: | |
| push: | |
| branches: [master, dev] | |
| paths: | |
| - 'website/**' | |
| - '.github/workflows/docs.yml' | |
| pull_request: | |
| paths: | |
| - 'website/**' | |
| - '.github/workflows/docs.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: 'website/.nvmrc' | |
| - run: npm ci --legacy-peer-deps | |
| working-directory: website | |
| - run: npm run docs:build | |
| working-directory: website |