Skip to content

refactor: restructure project to modular design system architecture #1

refactor: restructure project to modular design system architecture

refactor: restructure project to modular design system architecture #1

Workflow file for this run

name: CI (dev)
on:
push:
branches: [dev]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run lint:ts
- name: Build
run: npm run build