diff --git a/.github/workflows/monkey-ci.yml b/.github/workflows/monkey-ci.yml index d673f50cbba9..1ae16b6bf14a 100644 --- a/.github/workflows/monkey-ci.yml +++ b/.github/workflows/monkey-ci.yml @@ -155,6 +155,7 @@ jobs: - name: Check pretty (changed files) if: github.event_name == 'pull_request' id: check-pretty + continue-on-error: true run: | CHANGED_FILES=$(echo ${{ steps.get-changed-files.outputs.result }}) if [ -n "$CHANGED_FILES" ]; then @@ -164,6 +165,7 @@ jobs: - name: Check pretty (all files) if: github.event_name == 'push' id: check-pretty-all + continue-on-error: true run: pnpm prettier --check . - name: Fix pretty (changed files)