Skip to content

feat(Beans): Port Bean Configuration UI #17

feat(Beans): Port Bean Configuration UI

feat(Beans): Port Bean Configuration UI #17

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: πŸ“– Storybook (via Chromatic)
# Event for the workflow
on: push
# List of jobs
jobs:
chromatic-deployment:
if: github.actor != 'renovate[bot]'
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v4
with:
# πŸ‘‡ Fetches all Git history so that Chromatic can compare against the previous version
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@kaoto'
cache: 'yarn'
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install dependencies
# πŸ‘‡ Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm
run: yarn
# πŸ‘‡ Adds Chromatic as a step in the workflow
- name: Build ui library
run: yarn workspace @kaoto-next/ui build:lib
# πŸ‘‡ Builds the kaoto-next ui library located in dist/lib
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
#πŸ‘‡ Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ to obtain it
projectToken: chpt_7a4940aa65b14ab
token: ${{ secrets.GITHUB_TOKEN }}
buildScriptName: build:storybook
workingDir: packages/ui-tests