diff --git a/.github/workflows/ecosystem-ci-rolldown.yml b/.github/workflows/ecosystem-ci-rolldown.yml index de43edcc..acd806d3 100644 --- a/.github/workflows/ecosystem-ci-rolldown.yml +++ b/.github/workflows/ecosystem-ci-rolldown.yml @@ -54,6 +54,7 @@ jobs: - ladle - laravel - marko + - netlify-vite-plugin - nuxt - one # - nx # disabled temporarily diff --git a/.github/workflows/ecosystem-ci-selected.yml b/.github/workflows/ecosystem-ci-selected.yml index 66a465e3..69868ff0 100644 --- a/.github/workflows/ecosystem-ci-selected.yml +++ b/.github/workflows/ecosystem-ci-selected.yml @@ -54,6 +54,7 @@ on: - ladle - laravel - marko + - netlify-vite-plugin - nuxt - nx - one diff --git a/.github/workflows/ecosystem-ci.yml b/.github/workflows/ecosystem-ci.yml index 00a0bb11..bcf0a648 100644 --- a/.github/workflows/ecosystem-ci.yml +++ b/.github/workflows/ecosystem-ci.yml @@ -57,6 +57,7 @@ jobs: - ladle - laravel - marko + - netlify-vite-plugin - nuxt - one # - nx # disabled temporarily diff --git a/tests/netlify-vite-plugin.ts b/tests/netlify-vite-plugin.ts new file mode 100644 index 00000000..ba875ec9 --- /dev/null +++ b/tests/netlify-vite-plugin.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: 'netlify/primitives', + build: 'npm run build --workspaces', + beforeTest: 'npx playwright install chromium', + test: ['npm run test -w packages/vite-plugin'], + }) +}