Skip to content

fix(setup): update FeatureBoard path after component relocation #6

fix(setup): update FeatureBoard path after component relocation

fix(setup): update FeatureBoard path after component relocation #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Lint, Typecheck & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Format check
run: pnpm run format:check
- name: Typecheck
run: pnpm run typecheck
- name: Build
run: pnpm run build