Merge pull request #1381 from humanprotocol/develop #1
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: Subgraph check | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
paths: | |
- 'packages/core/**' | |
- '!packages/core/mx/**' | |
- 'packages/sdk/typescript/subgraph/**' | |
workflow_dispatch: | |
jobs: | |
subgraph-test: | |
name: Subgraph Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm install --global yarn && yarn | |
name: Install dependencies | |
- run: yarn subgraph:test | |
name: Run subgraph test |