Skip to content

Commit

Permalink
feat: add redwoodjs test (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe authored Aug 28, 2024
1 parent c5c7434 commit a8690fd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ on:
- quasar
- qwik
- rakkas
- redwoodjs
- storybook
- sveltekit
- unocss
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 @@ -52,6 +52,7 @@ on:
- quasar
- qwik
- rakkas
- redwoodjs
- remix
- storybook
- sveltekit
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 @@ -58,6 +58,7 @@ jobs:
- quasar
- qwik
- rakkas
- redwoodjs
- remix
- storybook
- sveltekit
Expand Down
11 changes: 11 additions & 0 deletions tests/redwoodjs.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.d.ts'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'redwoodjs/redwood',
build: 'build',
test: 'test-ci',
})
}

0 comments on commit a8690fd

Please sign in to comment.