docs: Add linting check as part of docs deploy (#1939)

We'll need to add the same thing as part of CI testing, but a second check
during deployment wont hurt in case CI is by passed for whatever reason.
This commit is contained in:
Eugene Yurtsev
2024-10-01 10:50:39 -04:00
committed by GitHub
parent 71efff7cee
commit 674180ad0c
+4
View File
@@ -41,6 +41,10 @@ jobs:
poetry install --with docs
poetry run pip install -U pytest pytest-check-links langsmith langchain GitPython
- name: Lint Docs
# This step lints the docs using the existing linting set up.
# It should be very fast and should not require any external services.
run: make lint-docs
- name: Build site
run: make build-docs
env: