Skip to content

Merge pull request #2246 from Plant-for-the-Planet-org/hotfix/minor-b… #715

Merge pull request #2246 from Plant-for-the-Planet-org/hotfix/minor-b…

Merge pull request #2246 from Plant-for-the-Planet-org/hotfix/minor-b… #715

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
push:
branches:
- hotfix/chromatic-build-issue
- develop
- feature/redesign-explore-btn
- feature/design-projectlist-filter
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build Storybook
run: npm run build-storybook
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}