Skip to content

feat: expansion increased the size of the heading #949

feat: expansion increased the size of the heading

feat: expansion increased the size of the heading #949

Workflow file for this run

name: 'Design System Build'
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- uses: ./.github/workflows/actions/build-all
name: Build
test-core-spec:
needs: [ build ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- uses: ./.github/workflows/actions/test-core-spec
name: Test Core Spec
release-packages:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
needs: [test-core-spec,build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- uses: ./.github/workflows/actions/release-packages
name: Release Packages
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
ADMIN_TOKEN: ${{ secrets.ADMIN_TOKEN }}