From 4522c99ec84a9d31854312a9848d56795de5beab Mon Sep 17 00:00:00 2001 From: Noah Allen Date: Mon, 8 May 2023 14:08:30 -0700 Subject: [PATCH] Revert "REVERTME: simulate phpunit not doing anything" This reverts commit 151c7fc5123097470f2d5d8955ccaaef9b743638. --- .github/workflows/unit-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index bc6fb475e8eb0e..2427588fbea7c4 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -182,13 +182,13 @@ jobs: if: ${{ ! matrix.multisite }} run: | set -o pipefail - echo "nothing happened" | tee phpunit.log + npm run test:unit:php | tee phpunit.log - name: Running multisite unit tests if: ${{ matrix.multisite }} run: | set -o pipefail - echo "nothing happened" | tee phpunit.log + npm run test:unit:php:multisite | tee phpunit.log # Verifies that PHPUnit actually runs in the first place. We want visibility # into issues which can cause it to fail silently, so we check the output