Skip to content

Commit 27f41da

Browse files
committed
fix: only run Langfuse integration tests with real credentials in CI
1 parent e6f8f4c commit 27f41da

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
- name: Run integration tests
8181
run: npm run test:integration
8282
env:
83-
LANGFUSE_PUBLIC_KEY: ${{ secrets.TEST_LANGFUSE_PUBLIC_KEY || 'pk-lf-test-key' }}
84-
LANGFUSE_SECRET_KEY: ${{ secrets.TEST_LANGFUSE_SECRET_KEY || 'sk-lf-test-key' }}
85-
LANGFUSE_HOST: http://localhost:3000
83+
LANGFUSE_PUBLIC_KEY: ${{ secrets.TEST_LANGFUSE_PUBLIC_KEY }}
84+
LANGFUSE_SECRET_KEY: ${{ secrets.TEST_LANGFUSE_SECRET_KEY }}
85+
LANGFUSE_HOST: ${{ secrets.TEST_LANGFUSE_HOST }}
8686

8787
docker-build:
8888
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)