From 0b6ff71784cd11565fb6eab16122dd206898931f Mon Sep 17 00:00:00 2001 From: Drish-xD Date: Tue, 13 Aug 2024 00:38:23 +0530 Subject: [PATCH] chore: add prettier --- .github/workflows/checks.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 74ffc57..d68c087 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,10 +1,9 @@ name: Code Checks on: - push: - branches: - - main pull_request: + push: + branches: [main] jobs: merge-conflicts: @@ -44,3 +43,7 @@ jobs: - name: Check ESLint run: npm run lint:check + + # TODO: Uncomment when code is formated by Prettier + # - name: Check Prettier + # run: npm run format:check