Skip to content

feat: migrate sidebar to panel-router architecture; cleanup old code #57

feat: migrate sidebar to panel-router architecture; cleanup old code

feat: migrate sidebar to panel-router architecture; cleanup old code #57

name: Lint/Typecheck/Format/Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint-typecheck-format-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Check formatting
run: npm run format:check
- name: Test with coverage
run: npm run test:coverage