Skip to content

feat: implement auto theme inheritance with dev preview support, repo standards, brand assets & animations #1

feat: implement auto theme inheritance with dev preview support, repo standards, brand assets & animations

feat: implement auto theme inheritance with dev preview support, repo standards, brand assets & animations #1

Workflow file for this run

name: CI & Quality Checks
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build-and-test:
name: Type-Check, Test & Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Type Check
run: npm run type-check
- name: Run Tests
run: npm test
- name: Build Package
run: npm run build