From 575dc5177dbf004e6be9e96a84bcafd4bb5af519 Mon Sep 17 00:00:00 2001 From: TC Date: Sun, 22 Nov 2020 00:04:08 +0100 Subject: [PATCH] Use xvfb to run tests on linux --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b79c1101..fed2e3f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,9 @@ jobs: run: yarn --frozen-lockfile - name: Test - run: yarn test + uses: GabrielBB/xvfb-action@v1 + with: + run: yarn test - name: Build on Mac if: startsWith(matrix.os, 'macOS')