Skip to content

Merge pull request #10 from Jurfest/feature/utils #4

Merge pull request #10 from Jurfest/feature/utils

Merge pull request #10 from Jurfest/feature/utils #4

name: Deploy Storybook to Chromatic
on:
push:
branches:
- main
jobs:
storybook-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Fetch all history (full Git history graph) so Chromatic can determine baseline commits
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
# Install dependencies based on the package-lock.json file for reliability and speed
- name: Install dependencies
run: npm ci
# Optional: Uncomment the build-storybook step to apply custom build steps or to verify the build beforehand
# - name: Build Storybook
# run: npm run build-storybook
# Build and Deploy Storybook using Chromatic's streamlined process
- name: Build and Deploy Storybook
# The flag auto accepts visual changes
run: npx chromatic --auto-accept-changes
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}