feat: add ArrakisHookFactory and related mappings #7
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: PR | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - ".github/workflows/**" | |
| jobs: | |
| pr: | |
| name: pr | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - run: yarn | |
| - name: Codegen | |
| run: yarn codegen | |
| - name: Build | |
| run: yarn build | |
| - name: Install subql-node-ethereum | |
| run: yarn global add @subql/node-ethereum | |
| - name: Run tests with Subquery Node | |
| run: subql-node-ethereum test -f ${{ github.workspace }} |