Skip to content

[Bug] FIxing bugs during test o rama #533

[Bug] FIxing bugs during test o rama

[Bug] FIxing bugs during test o rama #533

Workflow file for this run

name: Lint (Backend)
on:
pull_request:
paths:
- 'backend/**'
jobs:
run-linter:
name: Run Lint (Backend)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install packages
working-directory: ./backend
run: npm ci
- name: Run linter
working-directory: ./backend
run: npm run lint