mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
14 lines
289 B
TypeScript
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",
|
|
});
|
|
}
|