From 1f1ad72e9ea228c4bf7c7ebf2536d72c91f58b00 Mon Sep 17 00:00:00 2001 From: Fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sat, 1 Jun 2024 05:52:14 +0500 Subject: [PATCH] ci: update format check command to ignore .prettierignore files (#787) This is to try and fix formatting issues on #773 on a file that should be ignored. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e938f429c..7f66dc2f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Lint run: yarn lint - name: Formatting - run: yarn format:check + run: yarn format:check --ignore-path .prettierignore - name: Build run: yarn build