From 13538dd710d5cc87788c8636366526837b450562 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Fri, 8 May 2026 16:05:30 +0700 Subject: [PATCH] ci: install claude-code globally in server-tests server-tests in ci.yml and Server CI both need claude on PATH for the e2e tests that probe model catalogs and live preferences. cli-tests already installs the trio (claude-code, codex, opencode-ai); server tests now match. --- .github/workflows/ci.yml | 3 +++ .github/workflows/server-ci.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37b272a94..82fe404b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,6 +88,9 @@ jobs: - name: Install dependencies run: npm install + - name: Install agent CLIs for provider tests + run: npm install -g @anthropic-ai/claude-code @openai/codex@0.105.0 opencode-ai + - name: Build highlight dependency run: npm run build --workspace=@getpaseo/highlight diff --git a/.github/workflows/server-ci.yml b/.github/workflows/server-ci.yml index 07f850d05..f70523712 100644 --- a/.github/workflows/server-ci.yml +++ b/.github/workflows/server-ci.yml @@ -36,6 +36,9 @@ jobs: - name: Install server dependencies run: npm install --workspace=@getpaseo/server --include-workspace-root + - name: Install agent CLIs for provider tests + run: npm install -g @anthropic-ai/claude-code @openai/codex@0.105.0 opencode-ai + - name: Build highlight dependency run: npm run build --workspace=@getpaseo/highlight