From 39d7ceb0175e68ebaf2a84fbfaa5b69c1dd79834 Mon Sep 17 00:00:00 2001 From: Karsten Hassel Date: Sun, 20 Dec 2020 22:03:20 +0100 Subject: [PATCH] test github actions --- .github/workflows/node-ci.js.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/node-ci.js.yml b/.github/workflows/node-ci.js.yml index 3fdae25e..5f916bcf 100644 --- a/.github/workflows/node-ci.js.yml +++ b/.github/workflows/node-ci.js.yml @@ -24,9 +24,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: npm install - - run: npm run test:prettier - - run: npm run test:js - - run: npm run test:css - - run: npm run test:e2e - - run: npm run test:unit + - run: | + Xvfb :99 -screen 0 1024x768x16 & + export DISPLAY=:99 + npm install + npm run test:prettier + npm run test:js + npm run test:css + npm run test:e2e + npm run test:unit