From 02348354ab2742d4d9c9da48c67690890a3c66f4 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 28 Feb 2024 16:10:26 +0100 Subject: [PATCH] Github Actions: Directly use xvfb-run ...instead of relying on coactions/setup-xvfb that was triggering deprecation warnings. Change-Id: Ib2d2d48ba9a3318ff795e40bb8872c9a6cf72b6c Reviewed-by: Marcus Tillmanns --- .github/workflows/build-linux.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 3acfe12..0817710 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -12,7 +12,4 @@ jobs: cache: "npm" - run: npm ci - run: npm run compile - - name: Run unit tests - uses: coactions/setup-xvfb@v1 - with: - run: npm run unitTests + - run: xvfb-run -a npm run unitTests