Skip to content

Commit ae03da1

Browse files
committed
more codex vibing
Signed-off-by: Tyler Slaton <[email protected]>
1 parent 07bfb9e commit ae03da1

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

.github/workflows/dojo-e2e.yml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- suite: smoke
18-
test_path: tests/smoke-only
19-
services: []
20-
wait_on: []
21-
- suite: integration
22-
test_path: tests/integration
23-
services: []
24-
wait_on: []
25-
- suite: copilotkit-home
26-
test_path: tests/copilotkit-home.spec.ts
27-
services: []
28-
wait_on: []
2917
- suite: agno
3018
test_path: tests/agnoTests
3119
services: ["dojo","agno"]
@@ -83,6 +71,11 @@ jobs:
8371
uses: actions/setup-node@v4
8472
with:
8573
node-version: '22'
74+
cache: 'pnpm'
75+
cache-dependency-path: |
76+
typescript-sdk/pnpm-lock.yaml
77+
typescript-sdk/apps/dojo/e2e/pnpm-lock.yaml
78+
typescript-sdk/integrations/langgraph/examples/typescript/pnpm-lock.yaml
8679
8780
- name: Install pnpm
8881
uses: pnpm/action-setup@v4
@@ -99,13 +92,18 @@ jobs:
9992
- name: Install uv
10093
uses: astral-sh/setup-uv@v6
10194

102-
- name: Setup pnpm cache
95+
# Cache Python tool caches and virtualenvs for Poetry/uv-based projects
96+
- name: Cache Python dependencies
10397
uses: actions/cache@v4
10498
with:
105-
path: ~/.local/share/pnpm/store
106-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
99+
path: |
100+
~/.cache/pip
101+
~/.cache/pypoetry
102+
~/.cache/uv
103+
**/.venv
104+
key: ${{ runner.os }}-pydeps-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
107105
restore-keys: |
108-
${{ runner.os }}-pnpm-store-
106+
${{ runner.os }}-pydeps-
109107
110108
- name: Install dependencies
111109
working-directory: typescript-sdk

typescript-sdk/apps/dojo/scripts/run-dojo-everything.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ const ALL_SERVICES = {
8181
},
8282
},
8383
'langgraph-platform-python': {
84-
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --port 8005',
84+
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --host 127.0.0.1 --port 8005',
8585
name: 'LG Platform Py',
8686
cwd: path.join(integrationsRoot, 'langgraph/examples/python'),
8787
env: { PORT: 8005 },
8888
},
8989
'langgraph-platform-typescript': {
90-
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --port 8006',
90+
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --host 127.0.0.1 --port 8006',
9191
name: 'LG Platform TS',
9292
cwd: path.join(integrationsRoot, 'langgraph/examples/typescript/'),
9393
env: { PORT: 8006 },

0 commit comments

Comments
 (0)