diff --git a/scripts/run-tests.js b/scripts/run-tests.js index 9ea8a835dd2..b8f87182bd9 100644 --- a/scripts/run-tests.js +++ b/scripts/run-tests.js @@ -2,7 +2,7 @@ const { execSync } = require("child_process") if (process.platform === "win32") { - execSync("npm-run-all test:*", { stdio: "inherit" }) + execSync("npm-run-all test:* lint:*", { stdio: "inherit" }) } else { - execSync("npm-run-all -p test:*", { stdio: "inherit" }) + execSync("npm-run-all -p test:* lint:*", { stdio: "inherit" }) }