[DS-107] fix TextField bug #663
Workflow file for this run
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
# Workflow name | |
name: "Chromatic Deployment - Design System" | |
env: | |
CHROMATIC_APP_ID: 62d7d1f2efc8a1e364b5e5e8 | |
# Event for the workflow | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/chromatic.yml" | |
- "packages/design-system/**" | |
- "packages/design-system-icons/**" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- ".github/workflows/chromatic.yml" | |
- "packages/design-system/**" | |
- "packages/design-system-icons/**" | |
# List of jobs | |
jobs: | |
chromatic-deployment: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Required to retrieve git history | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Nx Cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules/.cache/nx | |
key: ${{ github.repository }}-nx-${{ env.NX_BASE }} | |
restore-keys: | | |
${{ github.repository }}-nx- | |
- name: Get branch name | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
id: branch-name | |
run: | | |
echo "value=$(echo $BRANCH_NAME)" >> $GITHUB_OUTPUT | |
- name: Get Chromatic branch name | |
env: | |
BRANCH_NAME: ${{ steps.branch-name.outputs.value }} | |
id: chromatic-branch-name | |
run: | | |
echo "value=$(echo $BRANCH_NAME | tr '[:upper:]' '[:lower:]' | tr / -)" >> $GITHUB_OUTPUT | |
- name: Install dependencies | |
run: npm ci | |
- name: Build design-system package and its dependencies | |
run: npx nx build @lunit/design-system | |
- name: Publish to Chromatic | |
env: | |
BRANCH_NAME: ${{ steps.branch-name.outputs.value }} | |
CHROMATIC_BRANCH_NAME: ${{ steps.chromatic-branch-name.outputs.value }} | |
id: chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
buildScriptName: build-storybook:design-system | |
- name: Comment preview link | |
env: | |
CHROMATIC_BRANCH_NAME: ${{ steps.chromatic-branch-name.outputs.value }} | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: NejcZdovc/[email protected] | |
with: | |
message: "Design System Storybook: https://${{ env.CHROMATIC_BRANCH_NAME }}--${{ env.CHROMATIC_APP_ID }}.chromatic.com" | |
identifier: "PREVIEW_LINK_COMMENT" | |
github_token: ${{ secrets.GITHUB_TOKEN }} |