Substack image support prototype, have to make changes to ensure consistent code practices. #1349
Workflow file for this run
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: 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 | |
- run: node api/src/util/test run-tests-for ${{ matrix.service }} | |
env: | |
HTTP_PROXY: ${{ secrets.API_EXTERNAL_PROXY }} | |
TEST_IGNORE_SERVICES: ${{ vars.TEST_IGNORE_SERVICES }} |