Skip to content

ci: improve workflows #1

ci: improve workflows

ci: improve workflows #1

Workflow file for this run

name: 'Linting & 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: 'Lint the code'
run: 'yarn lint:ts'
- name: 'Check code formatting'
run: yarn prettier:check