diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index 07d4e548..acca934f 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -60,6 +60,7 @@ on: - vite-setup-catalogue - vitepress - vitest + - vuepress jobs: init: runs-on: ubuntu-latest diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index b8c1ae4b..308ca963 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -66,6 +66,7 @@ on: - vite-setup-catalogue - vitepress - vitest + - vuepress jobs: execute-selected-suite: timeout-minutes: 30 diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 65bd258a..56a7cf6a 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -72,6 +72,7 @@ jobs: - vite-setup-catalogue - vitepress - vitest + - vuepress fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/tests/vuepress.ts b/tests/vuepress.ts new file mode 100755 index 00000000..05745b29 --- /dev/null +++ b/tests/vuepress.ts @@ -0,0 +1,15 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.d.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'vuepress/core', + overrides: { + '@vitejs/plugin-vue': true, + }, + branch: 'main', + build: 'build', + test: 'test', + }) +}