diff --git a/.github/workflows/validate_new_notebooks.yml b/.github/workflows/validate_new_notebooks.yml index 4f5d606c2416..d61b7ab9ec77 100644 --- a/.github/workflows/validate_new_notebooks.yml +++ b/.github/workflows/validate_new_notebooks.yml @@ -52,7 +52,7 @@ jobs: if [ -n "$notebooks" ]; then for notebook in $notebooks; do absolute_path="$GITHUB_WORKSPACE/$notebook" - yarn notebook:validate -- "$absolute_path" + yarn workspace @langchain/scripts notebook_validate "$absolute_path" done else echo "No notebooks in docs/core_docs to validate." diff --git a/package.json b/package.json index fdb81c35343e..fe247722ef30 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,6 @@ "test:standard:int": "turbo test:standard:int", "test:standard": "yarn test:standard:unit && yarn test:standard:int", "example": "yarn workspace examples start", - "notebook:validate": "turbo --filter=@langchain/scripts notebook:validate", "precommit": "turbo precommit", "docs": "yarn workspace core_docs start", "docs:api_refs": "yarn workspace api_refs start",