Skip to content

Bump eslint-plugin-react-hooks from 4.6.2 to 5.0.0 #287

Bump eslint-plugin-react-hooks from 4.6.2 to 5.0.0

Bump eslint-plugin-react-hooks from 4.6.2 to 5.0.0 #287

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint files
run: yarn run lint
- name: Build library and website
run: yarn run build
- name: Run unit tests
run: yarn test