Skip to content

Commit b4cb110

Browse files
feat: add vite-plugin-cloudflare (#361)
1 parent 2e1cc8c commit b4cb110

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

.github/workflows/ecosystem-ci-from-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ on:
6666
- vite-plugin-react-swc
6767
- vite-plugin-svelte
6868
- vite-plugin-vue
69+
- vite-plugin-cloudflare
6970
- vite-setup-catalogue
7071
- vitepress
7172
- vitest
@@ -169,6 +170,7 @@ jobs:
169170
- vite-plugin-react-swc
170171
- vite-plugin-svelte
171172
- vite-plugin-vue
173+
- vite-plugin-cloudflare
172174
- vite-setup-catalogue
173175
- vitepress
174176
- vitest

.github/workflows/ecosystem-ci-selected.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ on:
6969
- vite-plugin-react-swc
7070
- vite-plugin-svelte
7171
- vite-plugin-vue
72+
- vite-plugin-cloudflare
7273
- vite-setup-catalogue
7374
- vitepress
7475
- vitest

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
- vite-plugin-react-swc
7676
- vite-plugin-svelte
7777
- vite-plugin-vue
78+
- vite-plugin-cloudflare
7879
- vite-setup-catalogue
7980
- vitepress
8081
- vitest

tests/vite-plugin-cloudflare.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { runInRepo } from '../utils.ts'
2+
import type { RunOptions } from '../types.js'
3+
4+
export async function test(options: RunOptions) {
5+
await runInRepo({
6+
...options,
7+
repo: 'cloudflare/workers-sdk',
8+
test: 'pnpm test:ci -F @vite-plugin-cloudflare/playground',
9+
})
10+
}

0 commit comments

Comments
 (0)