From 791c1e39570e366b4b1b03b185109eca14e521eb Mon Sep 17 00:00:00 2001 From: Andreas Pfau Date: Thu, 14 Nov 2024 14:34:53 +0100 Subject: [PATCH] chore(ci): do not check markdown files in ci (#612) * chore(ci): do not check markdowns in ci * chore(ci): do not check markdown in ci --- .github/workflows/ci-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-checks.yaml b/.github/workflows/ci-checks.yaml index da456a7a3..dd9831d0d 100644 --- a/.github/workflows/ci-checks.yaml +++ b/.github/workflows/ci-checks.yaml @@ -142,7 +142,7 @@ jobs: - name: Install Dependencies run: npm ci - name: Run Prettier - run: npm run check-format + run: npm run check-format --check "**/*.{js,jsx,ts,tsx}" test: needs: install-dependencies