diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index d9c9f9c4..533bdb3d 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -46,6 +46,7 @@ on: # - ladle # disabled until its CI is fixed - laravel - marko + - module-federation - nuxt - nx - one @@ -158,6 +159,7 @@ jobs: # - ladle # disabled until its CI is fixed - laravel - marko + - module-federation - nuxt # - nx # disabled temporarily # - one # disabled until we figured out how to support bun diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index d97c0bcb..06ded669 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -57,6 +57,7 @@ on: - ladle - laravel - marko + - module-federation - nuxt - nx # - one # disabled until we figured out how to support bun diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index f1132d07..d1c93529 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -60,6 +60,7 @@ jobs: # - ladle # disabled until its CI is fixed - laravel - marko + - module-federation - nuxt # - one # disabled until we figured out how to support bun # - nx # disabled temporarily diff --git a/tests/module-federation.ts b/tests/module-federation.ts new file mode 100755 index 00000000..64f18666 --- /dev/null +++ b/tests/module-federation.ts @@ -0,0 +1,12 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.d.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'module-federation/vite', + build: 'build', + beforeTest: 'pnpm playwright install chromium', + test: ['test', 'test:integration'], + }) +}