Skip to content

Commit

Permalink
chore: provide e2e builds on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Jan 17, 2025
1 parent 3a280dc commit d319ea5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,12 @@ jobs:
with:
name: playwright-results
path: ./e2e/e2e-app/test-results
retention-days: 14
retention-days: 14

- name: 🆙 Upload e2e builds
if: failure()
uses: actions/upload-artifact@v4
with:
name: e2e-builds
path: ./e2e/**/dist
retention-days: 14
2 changes: 1 addition & 1 deletion e2e/e2e-app/src/homepage.lite.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { For, onMount, Show, useStore } from '@builder.io/mitosis';
import { COMPONENT_PATHS } from './component-paths';
import ComponentWithTypes from './components/component-with-types.lite';
import DefaultProps from './components/default-props/use-default-props.lite';
import DisabledInput from './components/disabled-input/disabled-input.lite';
import NestedParent from './components/nested/nested-parent.lite';
import OneComponent from './components/one-component.lite';
import ShowForComponent from './components/show-for-component.lite';
import SignalParent from './components/signals/signal-parent.lite';
import SpecialTags from './components/special-tags.lite';
import DefaultProps from './components/default-props/use-default-props.lite';

export default function Homepage(props: { pathname?: string }) {
const state = useStore({
Expand Down

0 comments on commit d319ea5

Please sign in to comment.