fix: accept chainId parameter for EIP-712 signing #339
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: CI | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "23" | |
| - uses: pnpm/action-setup@v4 | |
| - run: pnpm install | |
| - run: pnpm build | |
| - run: pnpm exec biome ci | |
| - run: tsc | |
| test: | |
| needs: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "23" | |
| - uses: pnpm/action-setup@v4 | |
| - run: pnpm install | |
| - run: pnpm vitest --coverage | |
| - uses: davelosert/vitest-coverage-report-action@v2 | |
| if: always() | |
| with: | |
| comment-on: "pr" |