From e1ec8e6cee454c9725ed80a1abdc09a8e8dbe4c4 Mon Sep 17 00:00:00 2001 From: r59q Date: Wed, 22 May 2024 20:11:40 +0200 Subject: [PATCH] Fixed pipeline --- .github/workflows/main.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9de949bdf..ff4b5bd35 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,13 +45,7 @@ jobs: shell: bash run: | npm install - npm run prettier - # if we find the string modified after running git status, it indicates that prettier has changed files! - if git status | grep -c "modified" -eq 0; then - exit 1 - else - exit 0 - fi + npm run checkFormat - name: Missing format report shell: bash if: ${{ failure() }}