From b76d0f9335aaf700ccb7262e1e5e7a98f86d3da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20=E2=80=9CTim=E2=80=9D=20Pillard?= Date: Fri, 3 Jan 2025 19:11:27 +0100 Subject: [PATCH] add vite-plugin-swc-transform to ecosystem-ci --- .../tests/vite-plugin-swc-transform.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/swc-ecosystem-ci/tests/vite-plugin-swc-transform.ts diff --git a/.github/swc-ecosystem-ci/tests/vite-plugin-swc-transform.ts b/.github/swc-ecosystem-ci/tests/vite-plugin-swc-transform.ts new file mode 100644 index 000000000000..cf612206104c --- /dev/null +++ b/.github/swc-ecosystem-ci/tests/vite-plugin-swc-transform.ts @@ -0,0 +1,12 @@ +import { runInRepo } from "../utils.js"; +import { RunOptions } from "../types.js"; + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: "ziir/vite-plugin-swc-transform", + branch: "main", + build: "build", + test: "test", + }); +}