Skip to content

Commit 8553fbc

Browse files
committed
sillytest
1 parent 87fdbb6 commit 8553fbc

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/dojo-e2e.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,27 @@ jobs:
4343
restore-keys: |
4444
${{ runner.os }}-pnpm-store-
4545
46+
- name: write langgraph env files
47+
working-directory: typescript-sdk/integrations/langgraph
48+
env:
49+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
50+
LANGSMITH_API_KEY: ${{ secrets.LANGSMITH_API_KEY }}
51+
run: |
52+
echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > examples/python/.env
53+
echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> examples/python/.env
54+
echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > examples/typescript/.env
55+
echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> examples/typescript/.env
56+
echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > python/ag_ui_langgraph/.env
57+
echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> python/ag_ui_langgraph/.env
58+
59+
- name: Upload wtf
60+
if: always() # Uploads artifacts even if tests fail
61+
uses: actions/upload-artifact@v4
62+
with:
63+
name: heckin-wtf
64+
path: typescript-sdk/integrations/langgraph/examples/python/.env
65+
retention-days: 1
66+
4667
- name: Install dependencies
4768
working-directory: typescript-sdk
4869
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)