From 5e0f946260987e7ea4694133c7eb2a9a6b2c6a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Zieli=C5=84ski?= Date: Fri, 2 Jun 2023 13:37:47 +0200 Subject: [PATCH] Meta: Remove the automated formatting check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The automated formatting check requires frequent revisions over minor issues like an extra space in a markdown document, without offering much in return. An occasional difference in formatting style is fine as long as it self-corrects in the long run – and that's what the pre-commit formatting check should take care of. This is an experimental change and we may have to roll it back or course-correct if I'm wrong about the self-correcting aspect and the overall formatting gets wildly out of hand. That being said, let's give it a try and see how it works. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63b2ffcbf0..8461c30e36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,6 @@ jobs: steps: - uses: actions/checkout@v3 - uses: ./.github/actions/prepare-playground - - run: npx nx format:check || npx prettier --check . - run: npx nx affected --target=lint - run: npx nx affected --target=typecheck test: