Skip to content

BI-24: Write a CI/CD pipeline for web-app-client #4

BI-24: Write a CI/CD pipeline for web-app-client

BI-24: Write a CI/CD pipeline for web-app-client #4

Workflow file for this run

# Workflow name
name: 'Deploy StoryBook on Chromatic'
# Event for the workflow
on: [pull_request, push]
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- name: Checkout Repository
uses: actions/checkout@v1
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- 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 }}