Skip to content

feat: finish up segment work #422

feat: finish up segment work

feat: finish up segment work #422

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

Check failure on line 12 in .github/workflows/chromatic.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/chromatic.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
# Job steps
steps:
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
# 👇 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 }}
exitZeroOnChanges: true