Skip to content

Commit

Permalink
feat: Added Melt-UI and it's preprocessor (#7)
Browse files Browse the repository at this point in the history
* add melt-ui

* adds melt's preprocessor

* added melt-ui to gh workflow
  • Loading branch information
AdrianGonz97 committed Dec 4, 2023
1 parent 5d92a41 commit 0849413
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ on:
- eslint-plugin-svelte
- language-tools
- mdsvex
- melt-ui
- melt-ui-preprocessor
- prettier-plugin-svelte
- rollup-plugin-svelte
- skeleton
Expand Down Expand Up @@ -103,6 +105,8 @@ jobs:
- eslint-plugin-svelte
- language-tools
- mdsvex
- melt-ui
- melt-ui-preprocessor
- prettier-plugin-svelte
- rollup-plugin-svelte
- skeleton
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ on:
- eslint-plugin-svelte
- language-tools
- mdsvex
- melt-ui
- melt-ui-preprocessor
- prettier-plugin-svelte
- rollup-plugin-svelte
- skeleton
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
- eslint-plugin-svelte
- language-tools
- mdsvex
- melt-ui
- melt-ui-preprocessor
- prettier-plugin-svelte
- rollup-plugin-svelte
- skeleton
Expand Down
11 changes: 11 additions & 0 deletions tests/melt-ui-preprocessor.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'melt-ui/preprocessor',
branch: 'main',
test: 'pnpm test',
})
}
11 changes: 11 additions & 0 deletions tests/melt-ui.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'melt-ui/melt-ui',
branch: 'main',
test: 'pnpm test',
})
}

0 comments on commit 0849413

Please sign in to comment.