Skip to content

feat: add zeta handling to v2 contracts #469

feat: add zeta handling to v2 contracts

feat: add zeta handling to v2 contracts #469

Workflow file for this run

name: Lint TS/JS
on:
push:
branches:
- main
pull_request:
branches:
- "*"
types:
- synchronize
- opened
- reopened
- ready_for_review
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install Dependencies
run: yarn install
- name: Lint JavaScript/TypeScript
run: yarn lint
- name: Lint Solidity
run: yarn lint:sol