api/test: make deepsource happy #467
This file contains 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: Run service tests | |
on: | |
pull_request: | |
push: | |
paths: | |
- api/** | |
- packages/** | |
jobs: | |
check-services: | |
name: test service functionality | |
runs-on: ubuntu-latest | |
outputs: | |
services: ${{ steps.checkServices.outputs.service_list }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- id: checkServices | |
run: pnpm i --frozen-lockfile && echo "service_list=$(node api/src/util/test get-services)" >> "$GITHUB_OUTPUT" | |
test-services: | |
needs: check-services | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
service: ${{ fromJson(needs.check-services.outputs.services) }} | |
name: "test service: ${{ matrix.service }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm i --frozen-lockfile && node api/src/util/test run-tests-for ${{ matrix.service }} |