From 4c9a28930b627c263a17aba94eb8ed59b090a064 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Sun, 10 May 2026 17:54:58 -0400 Subject: [PATCH] refactor(check-store): remove extraneous guard around running tests --- .github/workflows/check-store.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/check-store.yaml b/.github/workflows/check-store.yaml index 94096ef..0de81e7 100644 --- a/.github/workflows/check-store.yaml +++ b/.github/workflows/check-store.yaml @@ -111,12 +111,7 @@ jobs: - name: Run unit tests working-directory: ${{ steps.setup-magento.outputs.path }} - run: | - if find app/code -name "*Test.php" -print -quit | grep -q .; then - vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist --testsuite Store_Unit_Tests - else - echo "No unit tests found in app/code, skipping." - fi + run: vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist --testsuite Store_Unit_Tests coding-standard: runs-on: ${{ matrix.os }}