Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
upload testing artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
horacioh committed Mar 7, 2024
1 parent 16ee3c2 commit a56b65a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/desktop-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:

jobs:
build-binaries:
timeout-minutes: 60
name: Build ${{ matrix.config.os }} @ ${{ matrix.config.arch }}
runs-on: ${{ matrix.config.os }}
# if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -105,3 +106,9 @@ jobs:
run: npx playwright install --with-deps
- name: Run Playwright tests
run: yarn desktop:test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
10 changes: 3 additions & 7 deletions frontend/packages/app/pages/groups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
YStack,
} from '@mintter/ui'
import {Pin, PinOff} from '@tamagui/lucide-icons'
import React, {useMemo} from 'react'
import {useMemo} from 'react'
import {AccountLinkAvatar} from '../components/account-link-avatar'
import {useCopyGatewayReference} from '../components/copy-gateway-reference'
import {
Expand Down Expand Up @@ -119,11 +119,7 @@ function SiteUrlButton({group}: {group: Group}) {
)
}

const GroupListItem = React.memo(function GroupListItem({
group,
}: {
group: Group
}) {
function GroupListItem({group, onCopy}: {group: Group; onCopy: () => void}) {
const navigate = useClickNavigate()
const spawn = useNavigate('spawn')
const groupMembers = useGroupMembers(group.id)
Expand Down Expand Up @@ -175,7 +171,7 @@ const GroupListItem = React.memo(function GroupListItem({
]}
/>
)
})
}

export default function GroupsPage() {
const groupQuery = useGroups()
Expand Down

0 comments on commit a56b65a

Please sign in to comment.