Skip to content

Commit 057bf6d

Browse files
natewdominikg
andauthored
feat: add one framework (#360)
* feat: add one framework * add ecoystem specific test * chore: fix formatting --------- Co-authored-by: dominikg <[email protected]>
1 parent 610851f commit 057bf6d

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ on:
4848
- marko
4949
- nuxt
5050
- nx
51+
- one
5152
- previewjs
5253
- quasar
5354
- qwik

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ on:
5050
- marko
5151
- nuxt
5252
- nx
53+
- one
5354
- previewjs
5455
- quasar
5556
- qwik

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
- laravel
5656
- marko
5757
- nuxt
58+
- one
5859
# - nx # disabled temporarily
5960
- previewjs
6061
- quasar

tests/one.ts

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

0 commit comments

Comments
 (0)