From 406aab07aecb8561ffd9acb8a06463c356be8e23 Mon Sep 17 00:00:00 2001 From: NasgulNexus Date: Fri, 6 Dec 2024 12:15:29 +0100 Subject: [PATCH 1/2] fix: added type childErrors to field meta --- src/lib/core/components/Form/types/field.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/core/components/Form/types/field.ts b/src/lib/core/components/Form/types/field.ts index 7461c9ed..02e7cb53 100644 --- a/src/lib/core/components/Form/types/field.ts +++ b/src/lib/core/components/Form/types/field.ts @@ -33,5 +33,6 @@ export interface FieldRenderProps { valid: boolean; visited: boolean; submitFailed: boolean; + childErrors: Record; }; } From f7399593c7161a2efbe6d10d32de62ae17d11b1b Mon Sep 17 00:00:00 2001 From: NasgulNexus Date: Fri, 6 Dec 2024 12:16:48 +0100 Subject: [PATCH 2/2] fix: playwright report --- .github/workflows/playwright.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 45a0a567..b9335e69 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -10,8 +10,8 @@ jobs: container: image: mcr.microsoft.com/playwright:v1.40.0-jammy steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 18 - name: Install dependencies @@ -22,7 +22,7 @@ jobs: CI: 'true' - name: Upload Playwright playwright report to GitHub Actions Artifacts if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: playwright-report path: ./playwright-report