Skip to content

Commit

Permalink
feat: add Remix test (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed Jan 16, 2024
1 parent fa75445 commit 9e356b8
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 @@ -136,6 +136,7 @@ jobs:
- previewjs
- qwik
- rakkas
- remix
# - storybook # disabled until test is updated, see https://github.com/vitejs/vite-ecosystem-ci/issues/130
- 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 @@ -46,6 +46,7 @@ on:
- previewjs
- qwik
- rakkas
- remix
# - storybook # disabled until test is updated, see https://github.com/vitejs/vite-ecosystem-ci/issues/130
- sveltekit
- unocss
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 @@ -52,6 +52,7 @@ jobs:
- previewjs
- qwik
- rakkas
- remix
# - storybook # disabled until test is updated, see https://github.com/vitejs/vite-ecosystem-ci/issues/130
- sveltekit
- unocss
Expand Down
13 changes: 13 additions & 0 deletions tests/remix.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/remix',
branch: 'dev',
build: 'vite-ecosystem-ci:build',
beforeTest: 'vite-ecosystem-ci:before-test',
test: 'vite-ecosystem-ci:test',
})
}

0 comments on commit 9e356b8

Please sign in to comment.