Skip to content

lint

lint #2

Workflow file for this run

name: lint
on:
workflow_dispatch:
pull_request:
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies and config
run: |
corepack enable
yarn
yarn graphql
yarn ioc-generate
- name: Check types
run: yarn check-types
- name: ESlint
run: yarn lint
- name: Check formatting
run: yarn prettier-check