From 4a1a4641f0d74ae6fc27d3c92b74ab8c49127898 Mon Sep 17 00:00:00 2001 From: "Alex \"mcmonkey\" Goodwin" Date: Sun, 15 Sep 2024 12:39:04 +0900 Subject: [PATCH] disable prettier check because it's horribly ugly --- .github/workflows/react-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/react-ci.yml b/.github/workflows/react-ci.yml index 344f291..3e74eb9 100644 --- a/.github/workflows/react-ci.yml +++ b/.github/workflows/react-ci.yml @@ -21,7 +21,8 @@ jobs: run: pnpm install - name: Run Next.js Lint run: pnpm run lint - - name: Check Formatting with Prettier - run: npx prettier --check . + # Disabled prettier check because it makes things much uglier :( + #- name: Check Formatting with Prettier + # run: npx prettier --check . - name: Build the Next.js Project run: pnpm run build