From be1b0017ac6848c764fec0e994d613d28e652518 Mon Sep 17 00:00:00 2001 From: Eduard Sergeev Date: Sun, 27 Aug 2023 10:31:46 +1000 Subject: [PATCH] fixup! fixup! fixup! fixup! Fix `Run tests` failure reporting --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 0b0e8c4..671af90 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -48,11 +48,11 @@ jobs: if: runner.os == 'Linux' run: | sudo apt-get install -y xvfb - xvfb-run --auto-servernum npm test + xvfb-run --auto-servernum npm run test - name: Run Windows & MacOS tests if: runner.os != 'Linux' - run: npm test + run: npm run test - name: Add GHC extension output (on failure on Linux or MacOS) if: failure() && runner.os != 'Windows'