Skip to content

feat(ui): add h1–h6 base typography styles #4956

feat(ui): add h1–h6 base typography styles

feat(ui): add h1–h6 base typography styles #4956

Workflow file for this run

name: CI Check ✅
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- changeset-release/main
permissions:
contents: write
pull-requests: write
actions: read
checks: write
statuses: write
env:
HUSKY: 0
NODE_VERSION: "22.16.0"
jobs:
reuse-compliance:
uses: cloudoperators/common/.github/workflows/shared-reuse.yaml@d138f9922c75ed1e1ad3ae3bfb68dd8ae3284dc6 # main
license-headers:
permissions:
contents: write
uses: cloudoperators/common/.github/workflows/shared-license.yaml@d138f9922c75ed1e1ad3ae3bfb68dd8ae3284dc6 # main
with:
apply_header: false
cache-dependencies:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 10.34.1
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm install --frozen-lockfile
checks:
needs: cache-dependencies
runs-on: [ubuntu-latest]
strategy:
matrix:
include:
- title: "license-check"
command: "pnpm run check-licenses"
- title: "lint-check"
command: "pnpm lint"
- title: "type-check"
command: "pnpm run typecheck"
- title: "format-check"
command: "pnpm run check-format --check '**/*.{js,jsx,ts,tsx}'"
- title: "dependency-pinning-check"
command: "node .github/scripts/check-pinned-dependencies.js"
- title: "tests"
command: "pnpm build && pnpm run test"
name: ${{ matrix.title }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 10.34.1
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run "${{ matrix.command }}" command
run: ${{ matrix.command }}