Skip to content

Update Registry.sol #72

Update Registry.sol

Update Registry.sol #72

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache : yarn
- name: Install dependencies
run: yarn install --immutable
- name: Run ESLint
run: yarn lint