Skip to content

docs(otp-input): update the order of mask example (#1965) #7055

docs(otp-input): update the order of mask example (#1965)

docs(otp-input): update the order of mask example (#1965) #7055

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Install pnpm
run: npm i -g --force corepack && corepack enable
- name: Set node version to 22
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile && node scripts/bootstrap.mjs
- name: Run linter
run: pnpm lint
- name: Run test cases
run: pnpm test:coverage
- name: Report coverage to Codecov
uses: codecov/codecov-action@29386c70ef20e286228c72b668a06fd0e8399192 # v1.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}