Skip to content

Feature/ai knowledge assistant #179

Feature/ai knowledge assistant

Feature/ai knowledge assistant #179

Workflow file for this run

name: backend lint and format check
on:
pull_request:
branches: [main]
paths:
- 'app-backend/**'
- '.github/workflows/backend-lint.yml'
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app-backend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint
- name: Prettier
run: npm run format:check