diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index 7bf98987..a2c2ccff 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -64,6 +64,7 @@ on: - vite-plugin-react-swc - vite-plugin-svelte - vite-plugin-vue + - vite-plugin-cloudflare - vite-setup-catalogue - vitepress - vitest @@ -167,6 +168,7 @@ jobs: - vite-plugin-react-swc - vite-plugin-svelte - vite-plugin-vue + - vite-plugin-cloudflare - vite-setup-catalogue - vitepress - vitest diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index 55a37bfb..5d89eff0 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -67,6 +67,7 @@ on: - vite-plugin-react-swc - vite-plugin-svelte - vite-plugin-vue + - vite-plugin-cloudflare - vite-setup-catalogue - vitepress - vitest diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 38223d56..8ac629b4 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -73,6 +73,7 @@ jobs: - vite-plugin-react-swc - vite-plugin-svelte - vite-plugin-vue + - vite-plugin-cloudflare - vite-setup-catalogue - vitepress - vitest diff --git a/tests/vite-plugin-cloudflare.ts b/tests/vite-plugin-cloudflare.ts new file mode 100755 index 00000000..d8784ee5 --- /dev/null +++ b/tests/vite-plugin-cloudflare.ts @@ -0,0 +1,10 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.js' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'cloudflare/workers-sdk', + test: 'pnpm test:ci -F @vite-plugin-cloudflare/playground', + }) +}