diff --git a/.github/scripts/setup.js b/.github/scripts/setup.js index 59fd37b3b5..07d954cb1e 100644 --- a/.github/scripts/setup.js +++ b/.github/scripts/setup.js @@ -90,5 +90,8 @@ async function runAndStream(command, args, options) { } } else { console.log(chalk.green(`MySQL already configured, skipping setup`)); + + console.log(chalk.blue(`Running knex-migrator init`)); + await runAndStream('yarn', ['knex-migrator', 'init'], {cwd: coreFolder}); } })();