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 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; }; }