Skip to content

Commit

Permalink
Skip unnecessary build step in CI, add build step to yarn test (langc…
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 authored Sep 6, 2023
1 parent 885b6c7 commit b8d5a4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ jobs:
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn run build --filter="!docs"
- name: Test
run: yarn run test:unit

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"format:check": "turbo run format:check",
"lint": "turbo run lint --filter=\"!docs_skeleton\"",
"lint:fix": "yarn lint -- --fix",
"test": "yarn test:unit && yarn test:exports:docker",
"test": "yarn test:unit && yarn workspace langchain build && yarn test:exports:docker",
"test:unit": "turbo run test --filter langchain",
"test:int": "yarn run test:int:deps && turbo run test:integration ; yarn run test:int:deps:down",
"test:int:deps": "docker compose -f test-int-deps-docker-compose.yml up -d",
Expand Down

0 comments on commit b8d5a4d

Please sign in to comment.