Skip to content

RI-7975: Add Redis client lifecycle event emitting (#5415) #32

RI-7975: Add Redis client lifecycle event emitting (#5415)

RI-7975: Add Redis client lifecycle event emitting (#5415) #32

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@v4
- name: Install dependencies
uses: ./.github/actions/install-all-build-libs
with:
skip-system-deps: '1'
- name: Restore ESLint cache
uses: actions/cache@v4
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