Skip to content

added more web3js connector code (can contribute small images) #52

added more web3js connector code (can contribute small images)

added more web3js connector code (can contribute small images) #52

Workflow file for this run

name: Prettier Linting
on:
push:
branches:
- 'main'
pull_request:
types: [opened, reopened]
jobs:
run-linters:
name: Run Linters
runs-on: ubuntu-latest
steps:
- name: Checkout Git repo
uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
working-directory: client
run: npm install
- name: Run check linters
working-directory: client
run: npm run check