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: "Deploy Storybook to Chromatic" | |
# Event for the workflow | |
on: | |
push: | |
branches: | |
- main | |
# List of jobs | |
jobs: | |
test: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 23.x | |
- name: Install pnpm | |
run: npm install -g pnpm | |
# Install dependencies with pnpm | |
- name: Install dependencies | |
run: pnpm install | |
#👇 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 }} |