Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-rolldown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
- ladle
- laravel
- marko
- netlify-vite-plugin
- nuxt
- one
# - nx # disabled temporarily
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ on:
- ladle
- laravel
- marko
- netlify-vite-plugin
- nuxt
- nx
- one
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- ladle
- laravel
- marko
- netlify-vite-plugin
- nuxt
- one
# - nx # disabled temporarily
Expand Down
13 changes: 13 additions & 0 deletions tests/netlify-vite-plugin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.d.ts'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'netlify/primitives',
agent: 'npm',
Comment thread
serhalp marked this conversation as resolved.
Outdated
build: 'npm run build --workspaces',
beforeTest: 'npx playwright install chromium',
Comment thread
dominikg marked this conversation as resolved.
test: ['npm run test -w packages/vite-plugin'],
})
}