Skip to content

fix: add prop to InputReadonly to toggle hidden values #2356

fix: add prop to InputReadonly to toggle hidden values

fix: add prop to InputReadonly to toggle hidden values #2356

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
types: [ready_for_review]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: pnpm 🧰
uses: pnpm/action-setup@v2.4.0
with:
version: 8
- name: Node 🧰
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'pnpm'
- name: Install 📦
run: pnpm install
- name: Run Lint 💅
run: pnpm lint
- name: Run TS check 🔎
run: pnpm ts:check
- name: Run Audit 🔬
run: pnpm audit || exit 0
- name: Run Unit Tests 🧪
run: pnpm test