mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
|
import { getSuitesToRun, setupEnvironment } from "./utils.js";
|
||
|
|
||
|
async function runAll() {
|
||
|
const { root } = await setupEnvironment();
|
||
|
const suitesToRun = getSuitesToRun([], root);
|
||
|
|
||
|
console.log(`::set-output name=suites::${JSON.stringify(suitesToRun)}`);
|
||
|
}
|
||
|
|
||
|
runAll();
|