mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
enable playwright test on linux ci
This commit is contained in:
parent
c307880cd1
commit
37289ed6bd
1 changed files with 7 additions and 1 deletions
8
.github/workflows/nodejs.yml
vendored
8
.github/workflows/nodejs.yml
vendored
|
|
@ -83,8 +83,14 @@ jobs:
|
|||
- name: Run E2E Tests
|
||||
if: runner.os != 'Linux'
|
||||
run: yarn run test:e2e
|
||||
- name: Run E2E Tests on Linux
|
||||
if: runner.os == 'Linux'
|
||||
uses: GabrielBB/xvfb-action@v1.4
|
||||
with:
|
||||
run: yarn run test:e2e
|
||||
env:
|
||||
SHELL: /bin/bash
|
||||
- name: Archive E2E test screenshot
|
||||
if: runner.os != 'Linux'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: e2e
|
||||
|
|
|
|||
Loading…
Reference in a new issue