Skip to content

Merge branch 'feat-immutable-operator-in-vault' into feat/factory-upg… #3734

Merge branch 'feat-immutable-operator-in-vault' into feat/factory-upg…

Merge branch 'feat-immutable-operator-in-vault' into feat/factory-upg… #3734

Workflow file for this run

name: Linters
on: [push]
jobs:
solhint:
name: Solhint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Common setup
uses: ./.github/workflows/setup
- name: Run solhint
run: yarn lint:sol
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Common setup
uses: ./.github/workflows/setup
- name: Run eslint
run: yarn lint:ts
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Common setup
uses: ./.github/workflows/setup
- name: Generate typechain types
run: yarn hardhat compile
- name: Run typescript types check
run: yarn typecheck