diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index efcc946cb9239..eedace95e743e 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -83,8 +83,17 @@ jobs: chmod -R 767 ./ # TODO: Possibly integrate in wp-env npm run wp-env start - - name: Running the tests - run: npm run test-php && npm run test-unit-php-multisite + - name: Running lint check + run: npm run lint-php + + - name: Running single site unit tests + run: npm run test-unit-php + if: ${{ success() || failure() }} + + - name: Running multisite unit tests + run: npm run test-unit-php-multisite + if: ${{ success() || failure() }} + mobile-unit-js: name: Mobile