Skip to content

fix: 移除无效的对象大小检查并添加堆空间溢出异常 #8

fix: 移除无效的对象大小检查并添加堆空间溢出异常

fix: 移除无效的对象大小检查并添加堆空间溢出异常 #8

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 22
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: pnpm run build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_PAT }}
publish_dir: ./dist