Skip to content

Bump react-hook-form from 7.53.2 to 7.54.1 #667

Bump react-hook-form from 7.53.2 to 7.54.1

Bump react-hook-form from 7.53.2 to 7.54.1 #667

Workflow file for this run

name: Lint
on:
pull_request:
branches: [master, develop]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Cancel workflow action
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install Dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Lint Fix
run: pnpm lint:fix