Skip to content

fixing foundations (#120) #245

fixing foundations (#120)

fixing foundations (#120) #245

Workflow file for this run

name: "Checks"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "18"
- run: yarn install --frozen-lockfile
- run: yarn run lint:check
- run: yarn run prettier:check