2023-08-25 13:08:05 +08:00
|
|
|
name: 测试
|
|
|
|
|
|
|
|
on:
|
2024-03-07 15:35:23 +08:00
|
|
|
pull_request:
|
|
|
|
types: [opened, ready_for_review]
|
2023-08-25 13:08:05 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-12 11:21:20 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-25 13:08:05 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-03-12 11:21:20 +08:00
|
|
|
- uses: pnpm/action-setup@v3
|
2023-08-25 13:08:05 +08:00
|
|
|
with:
|
|
|
|
version: latest
|
2024-03-12 11:21:20 +08:00
|
|
|
- uses: actions/setup-node@v4
|
2023-08-25 13:08:05 +08:00
|
|
|
with:
|
|
|
|
cache: pnpm
|
2024-03-12 11:21:20 +08:00
|
|
|
- name: Install
|
|
|
|
run: pnpm install
|
|
|
|
- name: Build
|
|
|
|
run: pnpm build
|
2023-08-25 13:08:05 +08:00
|
|
|
env:
|
|
|
|
NODE_OPTIONS: --max_old_space_size=4096
|