feat: 修改github actions

This commit is contained in:
zyronon
2025-08-10 17:20:13 +08:00
parent cba9f1a0c4
commit 8eae066aba

View File

@@ -31,22 +31,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
cache: 'npm'
- name: Install dependencies
run: pnpm install
run: npm install
- name: Build
run: pnpm run build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v4