Skip to content

Merge branch 'release/0.14.3' #45

Merge branch 'release/0.14.3'

Merge branch 'release/0.14.3' #45

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
push:
paths:
- '.storybook'
- 'assets'
- 'src'
- '!src/index.html'
- '!src/prototypes/**'
# List of jobs
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: npm install
- name: Build Kezuri
run: npm run build
- name: Build Storybook
run: npm run --silent build-storybook
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
storybookBuildDir: ./storybook-static