Return EIP712 name and version from read method #283
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: CI | |
on: | |
pull_request: | |
branches: [main,staging] | |
types: [opened, reopened, labeled, synchronize] | |
env: | |
FORK_RPC_URL: ${{ secrets.FORK_RPC_URL }} | |
NODE_ENV: 'TEST' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: './.github/setup' | |
- name: Building | |
run: pnpm build | |
- name: Linting | |
run: pnpm lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: './.github/setup' | |
- name: Running tests | |
run: pnpm test:parallel | |