Skip to content

Commit 6d2cbbd

Browse files
feat: add Quasar Framework (#208)
1 parent 6302fab commit 6d2cbbd

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ on:
4040
- nuxt
4141
- nx
4242
- previewjs
43+
- quasar
4344
- qwik
4445
- rakkas
4546
- storybook
@@ -136,6 +137,7 @@ jobs:
136137
- nuxt
137138
# - nx # disabled temporarily
138139
- previewjs
140+
- quasar
139141
- qwik
140142
- rakkas
141143
# - remix # disabled until they move to pnpm

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

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ on:
4545
- nuxt
4646
- nx
4747
- previewjs
48+
- quasar
4849
- qwik
4950
- rakkas
5051
- remix

.github/workflows/ecosystem-ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
- nuxt
5252
# - nx # disabled temporarily
5353
- previewjs
54+
- quasar
5455
- qwik
5556
- rakkas
5657
# - remix # disabled until they move to pnpm

tests/quasar.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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: 'quasarframework/quasar',
8+
branch: 'dev',
9+
overrides: {
10+
'@vitejs/plugin-vue': true,
11+
},
12+
build: 'vite-ecosystem-ci:build',
13+
test: 'vite-ecosystem-ci:test',
14+
})
15+
}

0 commit comments

Comments
 (0)