Skip to content
Draft
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
24 changes: 24 additions & 0 deletions .github/workflows/pkg.pr.new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PKG PR New Test
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, ready_for_review]
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20

- run: yarn --frozen-lockfile

- run: npx pkg-pr-new publish
1 change: 1 addition & 0 deletions src/lib/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const Form = <T extends FieldValues>({
const autoSubmitHandler = useAutoSubmit({ onSubmit, formMethods, autoSubmitConfig });
return (
<FormContext.Provider value={{ requiredFields, disabled, ...formMethods }}>
hello world timothy
<form
ref={(elem) => {
if (formRef) {
Expand Down