mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
* chore(tests): Enable testing on node.js v18.x on GitHub CI * chore(tests): Remove outdated calls to test:prepare npm script The calls to `npm run test:prepare` in `tests/scripts/setup_*_env.sh` should have been removed along with that npm script in PR #4906. * chore(deps): Fix alphabetisation in package.json
8 lines
96 B
Bash
Executable File
8 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${RUNNER_OS}" == "Linux" ]
|
|
then
|
|
Xvfb :99 &
|
|
export DISPLAY=:99 &
|
|
fi
|