This repository was archived by the owner on Aug 22, 2025. It is now read-only.
[poap] fix: Add 'first' parameter to subgraph queries for complete batch processing #5206
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: Test strategy | |
| on: | |
| pull_request: | |
| types: | |
| - edited | |
| - labeled | |
| - synchronize | |
| - ready_for_review | |
| - review_requested | |
| - reopened | |
| jobs: | |
| test-strategy: | |
| if: contains(toJson(github.event.pull_request.labels), 'strategy') | |
| runs-on: ubuntu-latest | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| steps: | |
| - uses: actions/checkout@v2.3.4 | |
| - name: yarn install and test strategy | |
| run: | | |
| yarn install --frozen-lockfile | |
| STRATEGY=$(echo $PR_TITLE | sed -e 's/.*\[\(.*\)\].*/\1/') | |
| if [ -n "$STRATEGY" ]; then | |
| yarn test --strategy=$STRATEGY --more=500 | |
| fi |