Skip to content

chore(deps)(deps-dev): bump @nestjs/testing from 10.4.22 to 11.1.19 in /rag-api #19

chore(deps)(deps-dev): bump @nestjs/testing from 10.4.22 to 11.1.19 in /rag-api

chore(deps)(deps-dev): bump @nestjs/testing from 10.4.22 to 11.1.19 in /rag-api #19

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
changes:
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.changes.outputs.backend }}
frontend: ${{ steps.changes.outputs.frontend }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
backend:
- 'rag-api/**'
- '.github/workflows/**'
frontend:
- 'rag-ui/**'
- '.github/workflows/**'
backend:
needs: changes
if: ${{ needs.changes.outputs.backend == 'true' }}
uses: ./.github/workflows/test-backend.yml

Check failure on line 31 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/test-backend.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
frontend:
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
uses: ./.github/workflows/test-frontend.yml
security:
needs: [backend, frontend]
if: always() && (needs.backend.result != 'skipped' || needs.frontend.result != 'skipped')
uses: ./.github/workflows/security.yml
docker:
needs: [backend, frontend]
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/docker-build.yml
secrets: inherit