Skip to content

Fixed typo in useFormContext #3590

Fixed typo in useFormContext

Fixed typo in useFormContext #3590

Workflow file for this run

name: Unit Test / Lint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: |
pnpm lint
pnpm type
- name: Test
run: |
pnpm run test --ci
pnpm test:type
- name: Bundle watch
run: |
pnpm bundlewatch