mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
e755bce438
**Description:** This is a follow-up PR for https://github.com/swc-project/swc/pull/9062. This PR integrates swc-ecosystem-ci to publish pipeline. For faster debugging, I disabled the build process.
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();
|