swc/.github/swc-ecosystem-ci/run-all.ts
Donny/강동윤 e755bce438
chore: Implement Verify release with ecosystem (#9064)
**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.
2024-06-17 08:58:52 +09:00

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