This commit is contained in:
Tat Dat Duong
2025-03-31 18:51:54 +02:00
parent 05d56aaf22
commit 987044196f
+12 -4
View File
@@ -84,14 +84,18 @@ jobs:
node-version: 20.x
cache: "pnpm"
- name: Install dependencies dependencies
- name: Install dependencies
run: |
pnpm install
- name: Build
run: |
pnpm turbo run build
- name: Run integration tests
working-directory: libs/langgraph-api
run: |
pnpm turbo run test:parser
pnpm run test:parser
test-api:
timeout-minutes: 5
@@ -118,11 +122,15 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies dependencies
- name: Install dependencies
run: |
pnpm install
- name: Build
run: |
pnpm turbo run build
- name: Run integration tests
working-directory: libs/langgraph-api
run: |
pnpm turbo run test:api
pnpm run test:api