Skip to content

Fix overflow, breadcrumb, add doc link #12

Fix overflow, breadcrumb, add doc link

Fix overflow, breadcrumb, add doc link #12

Workflow file for this run

name: "Static Checks"
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
setup:
name: Setup Dependencies
uses: ./.github/workflows/setup.yml
lint:
name: ESLint Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Run Linter
run: npm run lint
tsc:
name: TS Types Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Run Tsc
run: npm run type-check
build:
name: Build App Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Build App
run: npm run build