chore(deps-dev): bump eslint from 9.39.1 to 10.0.3 #17
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: HMT Subgraph check | |
| on: | |
| push: | |
| branches: "**" | |
| paths: | |
| - "packages/core/**" | |
| - "packages/subgraph/hmt/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| subgraph-test: | |
| name: HMT Subgraph Test | |
| # TODO: Use ubuntu-latest when graph binary is not failing on ubuntu 24.04 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn workspaces focus @tools/subgraph-hmt | |
| - name: Build core package | |
| run: yarn workspace @human-protocol/core build | |
| - name: Generate manifest for Polygon for tests | |
| run: NETWORK=polygon yarn workspace @tools/subgraph-hmt generate | |
| - name: Run subgraph test | |
| run: yarn workspace @tools/subgraph-hmt test |