fix: Put schema files into a Map to allow direct access with a schema… #16
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
# .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 |