Skip to content

Fix overflow, breadcrumb, add doc link #16

Fix overflow, breadcrumb, add doc link

Fix overflow, breadcrumb, add doc link #16

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
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run Linter
run: npx eslint .
tsc:
name: TS Types Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run Tsc
run: npm run type-check
build:
name: Build App Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Build App
run: npm run build