twitter: add fallback to syndication api, fix some edge cases, and add a gif test #839
Workflow file for this run
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 }} | |
env: | |
API_EXTERNAL_PROXY: ${{ secrets.API_EXTERNAL_PROXY }} | |
TEST_IGNORE_SERVICES: ${{ vars.TEST_IGNORE_SERVICES }} |