swc/.github/swc-ecosystem-ci/run-all.ts

11 lines
272 B
TypeScript
Raw Normal View History

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();