Update node #127
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: CI | ||
| on: | ||
| pull_request: | ||
| push: | ||
| branches-ignore: | ||
| - main | ||
| - develop | ||
| env: | ||
| - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | ||
| jobs: | ||
| releasenew: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
| - name: Setup Node | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: 24 | ||
| cache: npm | ||
| - name: Install Dependencies | ||
| run: npm ci --no-fund --no-audit | ||
| - name: Build main with VitePress | ||
| run: | | ||
| npm run -w main docs:build | ||
| - name: Build repo with VitePress | ||
| run: | | ||
| npm run -w repo docs:build | ||
| - name: Build pigeonhole with VitePress | ||
| run: | | ||
| npm run -w pigeonhole docs:build | ||