Skip to content

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

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 #3

Workflow file for this run

name: CI & Quality Checks
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Type-Check, Test & Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Type Check
run: npm run type-check
- name: Run Tests
run: npm test
- name: Build Package
run: npm run build