Skip to content

Commit

Permalink
feat: add react-router test (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish authored Jan 6, 2025
1 parent eca41fe commit 9352768
Show file tree
Hide file tree
Showing 4 changed files with 16 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 @@ -152,6 +152,7 @@ jobs:
- quasar
- qwik
- rakkas
- react-router
- redwoodjs
- remix
- storybook
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
- react-router
- redwoodjs
- remix
- storybook
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
- react-router
- redwoodjs
- remix
- storybook
Expand Down
13 changes: 13 additions & 0 deletions tests/react-router.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.d.ts'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'remix-run/react-router',
branch: 'dev',
build: 'vite-ecosystem-ci:build',
beforeTest: 'vite-ecosystem-ci:before-test',
test: 'vite-ecosystem-ci:test',
})
}

0 comments on commit 9352768

Please sign in to comment.