const exec = require('shell-utils').exec; function run() { process.chdir('./playground'); exec.execSync(`yarn run quickinstall`); exec.execSync(`yarn run e2e release`); process.chdir('../'); } run();