Skip to content

Commit a783555

Browse files
authored
feat: add vite-rsc (#396)
1 parent c59f8cc commit a783555

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ on:
6464
- vite-plugin-svelte
6565
- vite-plugin-vue
6666
- vite-plugin-cloudflare
67+
- vite-rsc
6768
- vite-setup-catalogue
6869
- vitepress
6970
- vitest
@@ -167,6 +168,7 @@ jobs:
167168
- vite-plugin-svelte
168169
- vite-plugin-vue
169170
- vite-plugin-cloudflare
171+
- vite-rsc
170172
- vite-setup-catalogue
171173
- vitepress
172174
- vitest

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- vite-plugin-svelte
7474
- vite-plugin-vue
7575
- vite-plugin-cloudflare
76+
- vite-rsc
7677
- vite-setup-catalogue
7778
- vitepress
7879
- vitest

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ on:
6767
- vite-plugin-svelte
6868
- vite-plugin-vue
6969
- vite-plugin-cloudflare
70+
- vite-rsc
7071
- vite-setup-catalogue
7172
- vitepress
7273
- vitest

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
- vite-plugin-svelte
7777
- vite-plugin-vue
7878
- vite-plugin-cloudflare
79+
- vite-rsc
7980
- vite-setup-catalogue
8081
- vitepress
8182
- vitest

tests/vite-rsc.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { runInRepo } from '../utils.ts'
2+
import type { RunOptions } from '../types.d.ts'
3+
4+
export async function test(options: RunOptions) {
5+
await runInRepo({
6+
...options,
7+
repo: 'hi-ogawa/vite-plugins',
8+
branch: 'main',
9+
build: 'vite-ecosystem-ci:build',
10+
beforeTest: 'vite-ecosystem-ci:before-test',
11+
test: 'vite-ecosystem-ci:test',
12+
})
13+
}

0 commit comments

Comments
 (0)