Skip to content

fix: πŸš‘ update invalid path #186

fix: πŸš‘ update invalid path

fix: πŸš‘ update invalid path #186

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on: push
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
outputs:
status: ${{job.status}}
# Job steps
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # πŸ‘ˆ Required to retrieve git history
- name: cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}-storybook
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
# πŸ‘‡ 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: 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 }}