This repository was archived by the owner on Oct 9, 2025. It is now read-only.
chore(deps): bump gunicorn from 22.0.0 to 23.0.0 in /backend #594
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: frontend-linting | |
| on: | |
| pull_request: | |
| branches: [main, development] | |
| workflow_dispatch: | |
| jobs: | |
| linting-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: cd frontend; npm install | |
| - name: Run ESLint | |
| run: cd frontend; npm run lint |