Skip to content

427 clear columnfilters search input is not cleared when columnfilter is set to empty array using custom reset button #196

427 clear columnfilters search input is not cleared when columnfilter is set to empty array using custom reset button

427 clear columnfilters search input is not cleared when columnfilter is set to empty array using custom reset button #196

Workflow file for this run

name: Clean PR
on:
pull_request:
branches:
- v2
jobs:
clean-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8.5.1
- name: Install Dependencies
run: pnpm i
- name: Run Lint
run: pnpm run lint -- --fix
- name: Run Prettier
run: pnpm format
- name: Commit and Push Changes
run: |
git config --global user.name 'KevinVandy'
git config --global user.email '[email protected]'
git add -A
git commit -m "Lint and Prettier" || exit 0 # in case no changes present
git push origin ${{ github.head_ref }}