From fdc085abf4618f20f737e250c463fbdaf04643e9 Mon Sep 17 00:00:00 2001 From: dotnetCarpenter Date: Fri, 8 Nov 2024 22:30:35 +0100 Subject: [PATCH] remove GabrielBB/xvfb-action --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05f8c70..f03e15c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,10 @@ jobs: env: CI: true - name: Test - uses: GabrielBB/xvfb-action@v1 - with: - run: yarn test + run: yarn test + if: runner.os != 'Linux' + - name: Test on Linux + run: xvfb-run -a yarn test + if: runner.os == 'Linux' - name: Lint run: yarn lint