Skip to content

fixed sync validator issue #55

fixed sync validator issue

fixed sync validator issue #55

name: 'formatting'
env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
working-directory: .
on:
workflow_dispatch:
push:
jobs:
checks:
runs-on: 'ubuntu-latest'
defaults:
run:
working-directory: ${{env.working-directory}}
steps:
- name: 'Check out the repo'
uses: 'actions/checkout@v3'
- name: 'Install Node.js'
uses: 'actions/setup-node@v3'
with:
cache: 'yarn'
node-version: 16
- name: 'Install the dependencies'
run: 'yarn install'
- name: 'Check code formatting'
run: yarn prettier:check