Skip to content

Update CHANGELOG.md #126

Update CHANGELOG.md

Update CHANGELOG.md #126

Workflow file for this run

name: NodeJS with Vite
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout ✅
uses: actions/checkout@v4.2.2
- name: Use Node.js ${{ matrix.node-version }} ⚡
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm 🎁
uses: pnpm/action-setup@v4
- name: Build 🔧
run: |
pnpm install
pnpm run build:docs
- name: Deploy to gh-pages 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.