Skip to content

Commit

Permalink
feat: add analogjs test (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dafnik committed Jun 8, 2023
1 parent 7ce45c6 commit 1c18ece
Show file tree
Hide file tree
Showing 4 changed files with 16 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:
- "-"
- analogjs
- astro
- histoire
- iles
Expand Down Expand Up @@ -113,6 +114,7 @@ jobs:
strategy:
matrix:
suite:
- analogjs
- astro
- histoire
- iles
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:
- analogjs
- astro
- histoire
- iles
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:
- analogjs
- astro
- histoire
- iles
Expand Down
12 changes: 12 additions & 0 deletions tests/analogjs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'analogjs/analog',
branch: 'main',
build: 'build:vite-ci',
test: 'test:vite-ci',
})
}

0 comments on commit 1c18ece

Please sign in to comment.