diff options
author | Shin'ya UEOKA <ueokande@i-beam.org> | 2021-01-01 01:52:57 +0000 |
---|---|---|
committer | Shin'ya UEOKA <ueokande@i-beam.org> | 2021-01-01 01:52:57 +0000 |
commit | de70645737e595f9c8db22b7e5150916ce733fd2 (patch) | |
tree | 139c2eb54c37edf01435f69ad3c462cb94e56320 | |
parent | 66eaab218cb19107e34c80cc8f755234f4c62d84 (diff) |
Run Xvfb
-rw-r--r-- | .github/workflows/build.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index feed80e..095fd74 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -64,5 +64,9 @@ jobs: - run: yarn install - run: yarn build - run: | + export DISPLAY=:99 + geckodriver & + sudo Xvfb -ac :99 -screen 0 1280x1024x24 >/dev/null 2>&1 & + yarn test:e2e |