Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# (a) performs the npm run build when building the image, and
# (b) acts as a placeholder if we want to deploy as a container in the future.
- name: Build the image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
context: .
platforms: linux/amd64
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
name: Playwright Tests (Shard ${{ matrix.shardIndex }}/${{ matrix.shardTotal }})
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.55.0-noble
image: mcr.microsoft.com/playwright:v1.59.1-noble
options: --user 1001
strategy:
fail-fast: false
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
fi

- name: Upload blob report
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ !cancelled() }}
with:
name: blob-report-${{ matrix.shardIndex }}
Expand All @@ -125,7 +125,7 @@ jobs:
run: npm install @playwright/test

- name: Download all blob reports
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
path: all-reports
pattern: blob-report-*
Expand All @@ -145,7 +145,7 @@ jobs:
fi

- name: Upload merged Playwright report
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: playwright-report
path: playwright-report/
Expand Down
4 changes: 2 additions & 2 deletions e2e/navigation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ test.describe('Navigation', () => {
// Scroll to footer
await page.locator('footer').scrollIntoViewIfNeeded();

// Test About link
// Test About the Portal link
const aboutLink = page
.locator('footer')
.getByRole('link', { name: 'About' });
.getByRole('link', { name: 'About the Portal' });
await expect(aboutLink).toBeVisible();
await aboutLink.click();
expect(page.url()).toContain('/about');
Expand Down
6 changes: 4 additions & 2 deletions src/components/ui/SearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ import { SearchIcon, XIcon } from 'lucide-react';
import { ChangeEvent, FormEvent, InputHTMLAttributes, ReactNode } from 'react';
import { cn } from '../../lib/utils';

interface SearchInputProps
extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
interface SearchInputProps extends Omit<
InputHTMLAttributes<HTMLInputElement>,
'size'
> {
onSearch?: (value: string) => void;
className?: string;
placeholder?: string;
Expand Down