From c8bae3b1ad1e43ddc6e11707baa32d27acf3eab0 Mon Sep 17 00:00:00 2001 From: bracesproul Date: Mon, 12 Aug 2024 14:03:00 -0700 Subject: [PATCH] undo yarn install command --- .github/workflows/standard-tests.yml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/standard-tests.yml b/.github/workflows/standard-tests.yml index 010aa6034f4e..dc109def3c4a 100644 --- a/.github/workflows/standard-tests.yml +++ b/.github/workflows/standard-tests.yml @@ -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: @@ -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 @@ -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 @@ -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 @@ -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