Skip to content

add cross-encoder re-ranker for RAG false-positive detection #83

add cross-encoder re-ranker for RAG false-positive detection

add cross-encoder re-ranker for RAG false-positive detection #83

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Build & Lint & TypeCheck & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: jdx/mise-action@v4
with:
github_token: ${{ github.token }}
- name: Cache pnpm store
uses: actions/cache@v5
with:
path: ~/.local/share/pnpm/store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm install --frozen-lockfile
- run: pnpm check
- run: pnpm build
- run: pnpm lint
- run: pnpm test