docs(project): add codeapi integration research and feature plans #2237
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |