From b4ed7311be90d994c4239d0586dfd8e01f9065ed Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Sat, 5 Feb 2022 12:49:59 -0800 Subject: [PATCH] fix markdownlint basedir --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66ad0e1d8..115a0b929 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,8 @@ jobs: - name: Lint Docs run: | npm install -g markdownlint-cli - markdownlint docs/ + cd docs + markdownlint . static-analysis: runs-on: ubuntu-18.04