Skip to content

build(deps-dev): bump @types/node in the type group (#641) #1515

build(deps-dev): bump @types/node in the type group (#641)

build(deps-dev): bump @types/node in the type group (#641) #1515

Workflow file for this run

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.