extract llm loop to presenter | 重构整个调用loop的逻辑,抽取到上一层 #31
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build-check: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| arch: [x64] | |
| include: | |
| - arch: x64 | |
| platform: win-x64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm install | |
| env: | |
| npm_config_platform: linux | |
| npm_config_arch: ${{ matrix.arch }} | |
| - name: Install Sharp | |
| run: npm install --cpu=wasm32 sharp | |
| - name: Build | |
| run: npm run build |