fix: colour block increased weight of text #937
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |