Skip to content

feat: refactor image captioning tests and add ESLint configuration #15

feat: refactor image captioning tests and add ESLint configuration

feat: refactor image captioning tests and add ESLint configuration #15

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
frontend:
name: Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run package
backend:
name: Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "0.8.19"
- run: uv python install 3.10
- run: uv sync --group dev
working-directory: ./backend
- run: uv run ruff check .
working-directory: ./backend
- run: uv run pytest
working-directory: ./backend