Skip to content

Commit

Permalink
ci: add aria-live-capture (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Apr 26, 2024
1 parent 3d20a3e commit 602f008
Show file tree
Hide file tree
Showing 4 changed files with 17 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 @@ -29,6 +29,7 @@ on:
type: choice
options:
- "-"
- aria-live-capture
- nuxt
- nuxt-test-utils
- vue
Expand Down Expand Up @@ -99,6 +100,7 @@ jobs:
strategy:
matrix:
suite:
- aria-live-capture
- nuxt
- nuxt-test-utils
- vue
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 @@ -34,6 +34,7 @@ on:
required: true
type: choice
options:
- aria-live-capture
- nuxt
- nuxt-test-utils
- vue
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 @@ -40,6 +40,7 @@ jobs:
strategy:
matrix:
suite:
- aria-live-capture
- nuxt
- nuxt-test-utils
- vue
Expand Down
13 changes: 13 additions & 0 deletions tests/aria-live-capture.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'AriPerkkio/aria-live-capture',
branch: 'master',
build: 'build',
test: 'test',
beforeTest: ['pnpm exec playwright install'],
})
}

0 comments on commit 602f008

Please sign in to comment.