Skip to content

Don't use enum for ollama / Ollama default url / Try to get category … #164

Don't use enum for ollama / Ollama default url / Try to get category …

Don't use enum for ollama / Ollama default url / Try to get category … #164

Workflow file for this run

name: Tests
on: push
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm ci
- name: Run ESLint
run: ./node_modules/.bin/eslint **/*.ts
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm ci
- name: Run Unit Tests (jest)
run: npx jest --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}