Skip to content

chore: update monikers.json #124

chore: update monikers.json

chore: update monikers.json #124

Workflow file for this run

---
name: Linters
on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
js:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Generate missing source files
run: yarn run typechain
- name: Run linting
run: yarn lint