fix: install demowright from GitHub repo for latest unpublished changes

Amp-Thread-ID: https://ampcode.com/threads/T-019d519b-004f-71ce-b970-96edd971fbe0
Co-authored-by: Amp <amp@ampcode.com>
Amp-Thread-ID: https://ampcode.com/threads/T-019d519b-004f-71ce-b970-96edd971fbe0
Co-authored-by: Amp <amp@ampcode.com>
Amp-Thread-ID: https://ampcode.com/threads/T-019d519b-004f-71ce-b970-96edd971fbe0
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
snomiao
2026-04-07 10:48:42 +00:00
parent 94561270ef
commit d5b6ceead7

View File

@@ -204,7 +204,11 @@ jobs:
include_build_step: false
- name: Install QA dependencies
run: pnpm add -D @google/generative-ai@^0.24.1 @anthropic-ai/claude-agent-sdk@^0.2.85 demowright@^0.1.0
run: |
pnpm add -D @google/generative-ai@^0.24.1 @anthropic-ai/claude-agent-sdk@^0.2.85
git clone --depth 1 https://github.com/snomiao/demowright.git /tmp/demowright
cd /tmp/demowright && npm install && npm install typescript && npm run build
cd "$GITHUB_WORKSPACE" && pnpm add -D /tmp/demowright
- name: Cache main branch dist
id: cache-main-dist
@@ -380,7 +384,11 @@ jobs:
include_build_step: true
- name: Install QA dependencies
run: pnpm add -D @google/generative-ai@^0.24.1 demowright@^0.1.0
run: |
pnpm add -D @google/generative-ai@^0.24.1
git clone --depth 1 https://github.com/snomiao/demowright.git /tmp/demowright
cd /tmp/demowright && npm install && npm install typescript && npm run build
cd "$GITHUB_WORKSPACE" && pnpm add -D /tmp/demowright
- name: Setup ComfyUI server (no launch)
uses: ./.github/actions/setup-comfyui-server