Skip to content

Commit

Permalink
undo yarn install command
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Aug 12, 2024
1 parent 61fc38f commit c8bae3b
Showing 1 changed file with 5 additions and 15 deletions.
20 changes: 5 additions & 15 deletions .github/workflows/standard-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ jobs:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
# `yarn workspaces focus` will only install dependencies for the matrix package
# package & its dependencies
run: cd ./libs/langchain-${{ matrix.package }} && yarn workspaces focus
run: yarn install --immutable --mode=skip-build
- name: Run integration tests for ${{ matrix.package }}
run: yarn turbo test:integration --filter=@langchain/${{ matrix.package }}
env:
Expand Down Expand Up @@ -50,9 +48,7 @@ jobs:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
# `yarn workspaces focus` will only install dependencies for the `@langchain/openai`
# package & its dependencies
run: cd ./libs/langchain-openai && yarn workspaces focus
run: yarn install --immutable --mode=skip-build
- name: Build `@langchain/openai`
run: yarn build --filter=@langchain/openai
- name: Run integration tests for ChatOpenAI
Expand All @@ -70,9 +66,7 @@ jobs:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
# `yarn workspaces focus` will only install dependencies for the `@langchain/openai`
# package & its dependencies
run: cd ./libs/langchain-openai && yarn workspaces focus
run: yarn install --immutable --mode=skip-build
- name: Build `@langchain/openai`
run: yarn build --filter=@langchain/openai
- name: Run integration tests for `@langchain/openai` AzureChatOpenAI
Expand All @@ -93,9 +87,7 @@ jobs:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
# `yarn workspaces focus` will only install dependencies for the `@langchain/community`
# package & its dependencies
run: cd ./libs/langchain-community && yarn workspaces focus
run: yarn install --immutable --mode=skip-build
- name: Build `@langchain/community`
run: yarn build --filter=@langchain/community
- name: Run standard tests (integration) for `@langchain/community` BedrockChat
Expand All @@ -115,9 +107,7 @@ jobs:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
# `yarn workspaces focus` will only install dependencies for the `@langchain/community`
# package & its dependencies
run: cd ./libs/langchain-community && yarn workspaces focus
run: yarn install --immutable --mode=skip-build
- name: Build `@langchain/community`
run: yarn build --filter=@langchain/community
- name: Run standard tests (integration) for `@langchain/community` ChatFireworks
Expand Down

0 comments on commit c8bae3b

Please sign in to comment.