Skip to content

Commit

Permalink
feat: add icon test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Sep 11, 2024
1 parent 10ad185 commit fbbbbc5
Show file tree
Hide file tree
Showing 4 changed files with 15 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 @@ -58,6 +58,7 @@ on:
- devtools
- fonts
- scripts
- icon
- cli
- test-utils
- module-builder
Expand Down Expand Up @@ -154,6 +155,7 @@ jobs:
- devtools
- fonts
- scripts
- icon
- cli
- test-utils
- module-builder
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 @@ -63,6 +63,7 @@ on:
- devtools
- fonts
- scripts
- icon
- cli
- test-utils
- module-builder
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 @@ -69,6 +69,7 @@ jobs:
- devtools
- fonts
- scripts
- icon
- cli
- test-utils
- module-builder
Expand Down
11 changes: 11 additions & 0 deletions tests/icon.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.js'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'nuxt/icon',
build: ['dev:prepare', 'build'],
test: ['typecheck', 'test'],
})
}

0 comments on commit fbbbbc5

Please sign in to comment.