From 97f9c8d38dbc2077cc98993e8182de0cc9e7883e Mon Sep 17 00:00:00 2001 From: Giacomo Date: Mon, 23 Sep 2024 16:58:50 +0200 Subject: [PATCH] fix: skip explicitly the symlinks format with prettier --- .github/workflows/pull-requests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index cc44b42..d41300e 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -51,7 +51,7 @@ jobs: - if: steps.changed-files.outputs.to_format_any_changed == 'true' name: Format - run: yarn run prettier --check --ignore-unknown ${{ steps.changed-files.outputs.to_format_all_changed_files }} + run: yarn run prettier --check --ignore-unknown --no-error-on-unmatched-pattern ${{ steps.changed-files.outputs.to_format_all_changed_files }} - if: steps.changed-files.outputs.to_lint_any_changed == 'true' name: Run Eslint