diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index 0db27084..63f27456 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -32,6 +32,8 @@ on: - eslint-plugin-svelte - language-tools - mdsvex + - melt-ui + - melt-ui-preprocessor - prettier-plugin-svelte - rollup-plugin-svelte - skeleton @@ -103,6 +105,8 @@ jobs: - eslint-plugin-svelte - language-tools - mdsvex + - melt-ui + - melt-ui-preprocessor - prettier-plugin-svelte - rollup-plugin-svelte - skeleton diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index 11c9d492..f558ccc6 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -37,6 +37,8 @@ on: - eslint-plugin-svelte - language-tools - mdsvex + - melt-ui + - melt-ui-preprocessor - prettier-plugin-svelte - rollup-plugin-svelte - skeleton diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 122b6965..8305a91e 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -43,6 +43,8 @@ jobs: - eslint-plugin-svelte - language-tools - mdsvex + - melt-ui + - melt-ui-preprocessor - prettier-plugin-svelte - rollup-plugin-svelte - skeleton diff --git a/tests/melt-ui-preprocessor.ts b/tests/melt-ui-preprocessor.ts new file mode 100644 index 00000000..9e3be50b --- /dev/null +++ b/tests/melt-ui-preprocessor.ts @@ -0,0 +1,11 @@ +import { runInRepo } from '../utils' +import { RunOptions } from '../types' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'melt-ui/preprocessor', + branch: 'main', + test: 'pnpm test', + }) +} diff --git a/tests/melt-ui.ts b/tests/melt-ui.ts new file mode 100644 index 00000000..778b5be9 --- /dev/null +++ b/tests/melt-ui.ts @@ -0,0 +1,11 @@ +import { runInRepo } from '../utils' +import { RunOptions } from '../types' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'melt-ui/melt-ui', + branch: 'main', + test: 'pnpm test', + }) +}