swc/.github/swc-ecosystem-ci/todos/adonisjs-core.ts
2024-06-17 12:07:46 +09:00

14 lines
289 B
TypeScript

import { runInRepo } from "../utils.js";
import { RunOptions } from "../types.js";
export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: "adonisjs/core",
branch: "develop",
build: "build",
test: "test",
nodeVerison: "20",
});
}