Skip to content

⬆️ Bump zod and next #53

⬆️ Bump zod and next

⬆️ Bump zod and next #53

Workflow file for this run

# Workflow name
name: "Chromatic"
# Event for the workflow
on:
pull_request:
branches:
- master
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- name: Specify Node Version
uses: actions/setup-node@v3
with:
node-version: 18
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Install dependencies
run: yarn
# 👇 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 }}