diff --git a/.github/workflows/ecosystem-ci-from-pr.yml b/.github/workflows/ecosystem-ci-from-pr.yml index ea529eba..e0e0a106 100644 --- a/.github/workflows/ecosystem-ci-from-pr.yml +++ b/.github/workflows/ecosystem-ci-from-pr.yml @@ -47,6 +47,7 @@ on: - rollup-plugin-svelte - skeleton - sv + - svelte.dev - svelte-eslint-parser - svelte-loader - svelte-preprocess @@ -133,6 +134,7 @@ jobs: - rollup-plugin-svelte - skeleton - sv + - svelte.dev - svelte-eslint-parser - svelte-loader - svelte-preprocess diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index 7e63fdf5..2b097326 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -49,6 +49,7 @@ on: - rollup-plugin-svelte - skeleton - sv + - svelte.dev - svelte-eslint-parser - svelte-loader - svelte-preprocess diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 991b0ff3..170cac37 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -58,6 +58,7 @@ jobs: - rollup-plugin-svelte - skeleton - sv + - svelte.dev - svelte-eslint-parser - svelte-loader - svelte-preprocess diff --git a/tests/svelte.dev.ts b/tests/svelte.dev.ts new file mode 100644 index 00000000..d61fc548 --- /dev/null +++ b/tests/svelte.dev.ts @@ -0,0 +1,17 @@ +import { runInRepo } from '../utils.ts' +import { RunOptions } from '../types.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'sveltejs/svelte.dev', + branch: 'main', + build: 'build', + test: ['test', 'check'], + overrides: { + '@sveltejs/kit': true, + 'svelte-check': true, + '@sveltejs/vite-plugin-svelte': true, + }, + }) +}