Skip to content

build(deps): Bump webpack from 5.88.2 to 5.97.1 in /client #243

build(deps): Bump webpack from 5.88.2 to 5.97.1 in /client

build(deps): Bump webpack from 5.88.2 to 5.97.1 in /client #243

Workflow file for this run

name: Lint
on: [push]
jobs:
Ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install API Dependencies
working-directory: api
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Ruff
working-directory: api
run: ruff .
ESLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install client dependencies
working-directory: client
run: npm ci
- name: Run ESLint
working-directory: client
run: npm run lint