mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
Chrome comes pre-installed on GitHub hosted macOS runners, and while `Xvfb` does not seem to be installed neither does it seem to be needed.
8 lines
153 B
Bash
Executable File
8 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${RUNNER_OS}" == "macOS" ]
|
|
then
|
|
export CHROME_BIN="/Applications/Google Chrome.app"
|
|
npm run test:prepare > /dev/null &
|
|
fi
|