Skip to content

ci: integrate chromatic publish into github actions workflow #1

ci: integrate chromatic publish into github actions workflow

ci: integrate chromatic publish into github actions workflow #1

Workflow file for this run

name: 'Chromatic Publish'
# NOTE: we should change this once project/playwright is merged to develop
on:
push:
branches:
- project/storybook
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn
#👇 Adds Chromatic as a step in the workflow
- uses: chromaui/action@v1
# Options required for Chromatic's GitHub Action
with:
#👇 Chromatic projectToken
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}