build(deps-dev): bump @types/node in the type group (#641) #1515
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: Node CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node-version: [24.x, 25.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: yarn, yarn build | |
| run: | | |
| yarn --frozen-lockfile | |
| yarn build --configuration production --output-path docs --base-href /${{ github.event.repository.name }}/ | |
| env: | |
| CI: true | |
| - name: Deploy 🚀 | |
| uses: peaceiris/actions-gh-pages@v4 | |
| if: ${{ matrix.node-version == '24.x' && github.event_name == 'push' }} | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./docs # The folder the action should deploy. |