CI: Fix editor test run on macOS (no xvfb-run on macOS)

This commit is contained in:
DeeDeeG 2024-04-18 17:37:32 -04:00
parent 0be235a212
commit f4622128f0

View File

@ -41,4 +41,9 @@ jobs:
run: yarn build
- name: Run Tests
if: runner.os != 'Linux'
run: node script/run-tests.js spec
- name: Run Tests with xvfb-run (Linux)
if: runner.os == 'Linux'
run: xvfb-run --auto-servernum node script/run-tests.js spec