Skip to content

[GMS-1103] Add erc20 contract client #217

[GMS-1103] Add erc20 contract client

[GMS-1103] Add erc20 contract client #217

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
hardhat-test:
name: Run Hardhat Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test
lint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run eslint
run: yarn lint