Skip to content

fix: prevent firing onChange when only value prop changed from outside #1

fix: prevent firing onChange when only value prop changed from outside

fix: prevent firing onChange when only value prop changed from outside #1

Workflow file for this run

name: 'Check PR'
on:
pull_request_target:
types:
- opened
- synchronize
- reopened
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint code
run: yarn lint
- name: Build library code
run: yarn build
check-versioning:
runs-on: ubuntu-latest
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}