Skip to content

Ignore value and deadline parameters when creating EIP712 requests for older contracts instead of throwing an error #178

Ignore value and deadline parameters when creating EIP712 requests for older contracts instead of throwing an error

Ignore value and deadline parameters when creating EIP712 requests for older contracts instead of throwing an error #178

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Install PNPM
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install SDK dependencies
run: pnpm install
- name: Install SDK test dependencies
run: cd test && pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test