Skip to content

api: cors + include benchmarks from fund perf endpoint #2

api: cors + include benchmarks from fund perf endpoint

api: cors + include benchmarks from fund perf endpoint #2

Workflow file for this run

name: Test api
on:
pull_request:
branches: ["main"]
paths:
- "api/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
# Run api tests
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies and run tests
shell: bash
run: |
cd api/ && pnpm install && pnpm run test