Skip to content

store and load config from redis #106

store and load config from redis

store and load config from redis #106

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2
with:
src: backend/lifehub
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
working-directory: frontend
- name: Run ESLint
run: npx eslint --ext .js,.jsx,.ts,.tsx app
working-directory: frontend
- name: Run Prettier
run: npx prettier --check app
working-directory: frontend