Skip to content

docs(project): add codeapi integration research and feature plans #2237

docs(project): add codeapi integration research and feature plans

docs(project): add codeapi integration research and feature plans #2237

Workflow file for this run

name: Test OLAT-API functionalities
on:
push:
branches: ['v3', 'v3*']
paths:
- 'packages/prisma/**'
- 'apps/olat-api/**'
- '.github/workflows/test-olat-api.yml'
pull_request:
branches: ['v3', 'v3*']
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}
cancel-in-progress: true
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- uses: pnpm/action-setup@v4
with:
version: 11.5.0
run_install: true
- name: Run tests using Docker
run: |
cd packages/prisma
pnpm run build
cd ../grading
pnpm run build
cd ../util
pnpm run build
cd ../../apps/olat-api
pnpm run test