Skip to content

add gnosis

add gnosis #186

Workflow file for this run

name: Test and Lint
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '>= 18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: npx hardhat test
- name: Run linter
run: yarn lint