diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index c3bc44d0..933cedd5 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -55,6 +55,7 @@ on: - vite-setup-catalogue - vitepress - vitest + - wxt jobs: init: runs-on: ubuntu-latest diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index 784641bc..ac113acc 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -61,6 +61,7 @@ on: - vite-setup-catalogue - vitepress - vitest + - wxt jobs: execute-selected-suite: timeout-minutes: 30 diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index a8d1f26e..908b7c85 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -67,6 +67,7 @@ jobs: - vite-setup-catalogue - vitepress - vitest + - wxt fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/tests/wxt.ts b/tests/wxt.ts new file mode 100644 index 00000000..b3b5df75 --- /dev/null +++ b/tests/wxt.ts @@ -0,0 +1,11 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.d.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'wxt-dev/wxt', + build: 'build', + test: 'test', + }) +}