Skip to content

Bump eslint-plugin-react-hooks from 5.2.0 to 6.1.0 in the eslint group across 1 directory #268

Bump eslint-plugin-react-hooks from 5.2.0 to 6.1.0 in the eslint group across 1 directory

Bump eslint-plugin-react-hooks from 5.2.0 to 6.1.0 in the eslint group across 1 directory #268

name: Continuous integration
on:
pull_request:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache the node_modules dir
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --immutable && yarn playwright install chromium
- name: Format
run: yarn checkformatting
- name: Lint
run: yarn lint
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test