Skip to content

Commit

Permalink
feat: add Quasar Framework (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufkandemir authored Mar 19, 2024
1 parent 6302fab commit 6d2cbbd
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ on:
- nuxt
- nx
- previewjs
- quasar
- qwik
- rakkas
- storybook
Expand Down Expand Up @@ -136,6 +137,7 @@ jobs:
- nuxt
# - nx # disabled temporarily
- previewjs
- quasar
- qwik
- rakkas
# - remix # disabled until they move to pnpm
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ on:
- nuxt
- nx
- previewjs
- quasar
- qwik
- rakkas
- remix
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
- nuxt
# - nx # disabled temporarily
- previewjs
- quasar
- qwik
- rakkas
# - remix # disabled until they move to pnpm
Expand Down
15 changes: 15 additions & 0 deletions tests/quasar.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.d.ts'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'quasarframework/quasar',
branch: 'dev',
overrides: {
'@vitejs/plugin-vue': true,
},
build: 'vite-ecosystem-ci:build',
test: 'vite-ecosystem-ci:test',
})
}

0 comments on commit 6d2cbbd

Please sign in to comment.