Skip to content

Commit 076c1b9

Browse files
committed
feat: add nitro to suite
1 parent 9f5e003 commit 076c1b9

6 files changed

Lines changed: 19 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ on:
3939
- laravel
4040
- marko
4141
- module-federation
42+
- nitro
4243
- nuxt
4344
- nx
4445
- one
@@ -138,6 +139,7 @@ jobs:
138139
- laravel
139140
- marko
140141
- module-federation
142+
- nitro
141143
- nuxt
142144
# - nx # disabled temporarily
143145
# - one # disabled until we figured out how to support bun

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ on:
4747
- laravel
4848
- marko
4949
- module-federation
50+
- nitro
5051
- nuxt
5152
- nx
5253
- one
@@ -163,6 +164,7 @@ jobs:
163164
- laravel
164165
- marko
165166
- module-federation
167+
- nitro
166168
- nuxt
167169
# - nx # disabled temporarily
168170
# - one # disabled until we figured out how to support bun

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
- laravel
4545
- marko
4646
- module-federation
47+
- nitro
4748
- nuxt
4849
# - one # disabled until we figured out how to support bun
4950
# - nx # disabled temporarily

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ on:
5858
- laravel
5959
- marko
6060
- module-federation
61+
- nitro
6162
- nuxt
6263
- nx
6364
# - one # disabled until we figured out how to support bun

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
- laravel
6363
- marko
6464
- module-federation
65+
- nitro
6566
- nuxt
6667
# - one # disabled until we figured out how to support bun
6768
# - nx # disabled temporarily

tests/nitro.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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: 'nitrojs/nitro',
8+
branch: 'main',
9+
build: 'build',
10+
test: 'pnpm vitest run test/vite',
11+
})
12+
}

0 commit comments

Comments
 (0)