Skip to content

RI-8208: Adopt typed Redux hooks (useAppDispatch / useAppSelector) (#… #462

RI-8208: Adopt typed Redux hooks (useAppDispatch / useAppSelector) (#…

RI-8208: Adopt typed Redux hooks (useAppDispatch / useAppSelector) (#… #462

Workflow file for this run

name: Lint
on:
workflow_call:
workflow_dispatch:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
name: ESLint
steps:
- uses: actions/checkout@v6
- name: Install dependencies
uses: ./.github/actions/install-all-build-libs
with:
skip-system-deps: '1'
- name: Restore ESLint cache
uses: actions/cache@v5
with:
path: .eslintcache
key: eslint-${{ runner.os }}-${{ hashFiles('.eslintrc.js') }}-${{ github.ref_name }}
restore-keys: |
eslint-${{ runner.os }}-${{ hashFiles('.eslintrc.js') }}-
- name: Run ESLint
run: yarn lint