Skip to content

feat: add shareable evaluation prompt links #1549

feat: add shareable evaluation prompt links

feat: add shareable evaluation prompt links #1549

Workflow file for this run

name: 'Tests (Unit)'
on:
pull_request:
branches: [main, master]
types: [opened, synchronize, ready_for_review]
paths:
- '.github/workflows/tests-unit.yml'
- 'package.json'
- 'packages/app/**'
- 'packages/constants/**'
- 'packages/db/**'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
- 'tsconfig.json'
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
vitest:
name: Typecheck and unit tests
if: ${{ !github.event.pull_request.draft }}
timeout-minutes: 10
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
CYPRESS_INSTALL_BINARY: '0'
- name: Typecheck
run: pnpm typecheck
- name: Unit tests
run: pnpm test:unit