Skip to content

Resolve yarn lint warnings #629

Resolve yarn lint warnings

Resolve yarn lint warnings #629

Workflow file for this run

name: Lint codebase
on:
push:
branches:
- main
paths:
- "frontend/**"
- "backend/python/**"
pull_request:
branches:
- main
paths:
- "frontend/**"
- "backend/python/**"
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Filter changed files
uses: dorny/paths-filter@v2
id: changes
with:
filters: |
frontend:
- "frontend/**"
python-backend:
- "backend/python/**"
- name: Set up Node.js
if: steps.changes.outputs.frontend == 'true'
uses: actions/setup-node@v2
with:
node-version: "14.15.5"
cache: "yarn"
cache-dependency-path: |
frontend/yarn.lock
- name: Install Node.js dependencies
if: steps.changes.outputs.frontend == 'true'
run: yarn --cwd ./frontend --prefer-offline
- name: Lint frontend
if: steps.changes.outputs.frontend == 'true'
working-directory: ./frontend
run: yarn lint
- name: Lint Python backend
if: steps.changes.outputs.python-backend == 'true'
working-directory: ./backend
run: pip install black && python -m black --check .