mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
cd855762cd
We were using Yarn Classic. While this is not deprecated, Yarn is moving in a different direction with Yarn Modern (read more [here](https://yarnpkg.com/migration/overview)) and we should align with that. The migration mainly requires rebuilding our lockfile. We will still use `node_modules` for now, though in the future we may want to adopt the new [Plug'n'Play model](https://yarnpkg.com/features/pnp).
19 lines
424 B
Bash
19 lines
424 B
Bash
rm ~/Desktop/WITH-LOVE-FROM-AMERICA.txt
|
|
cd ~/actions-runner/_work/testdriver/testdriver/
|
|
brew install go
|
|
brew tap scripthaus-dev/scripthaus
|
|
brew install scripthaus
|
|
corepack enable
|
|
yarn install
|
|
scripthaus run build-backend
|
|
echo "Yarn"
|
|
yarn
|
|
echo "Rebuild"
|
|
scripthaus run electron-rebuild
|
|
echo "Webpack"
|
|
scripthaus run webpack-build
|
|
echo "Starting Electron"
|
|
scripthaus run electron 1>/dev/null 2>&1 &
|
|
echo "Electron Done"
|
|
exit
|