mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${RUNNER_OS}" == "Linux" ]
|
|
then
|
|
Xvfb :99 &
|
|
export DISPLAY=:99 &
|
|
npm run test:prepare > /dev/null &
|
|
fi
|