Fix overflow, breadcrumb, add doc link #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
setup: | |
name: Setup Node.js | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@23755b521f87533c8ed7f8fb13674f9021579e34 # v4 | |
with: | |
node-version: 22 | |
- name: Install Dependencies | |
run: npm ci | |
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 |