Skip to content

build(deps-dev): bump husky from 8.0.3 to 9.1.5 #574

build(deps-dev): bump husky from 8.0.3 to 9.1.5

build(deps-dev): bump husky from 8.0.3 to 9.1.5 #574

Workflow file for this run

name: 'Chromatic'
# Event for the workflow
on:
push:
branches: [main]
pull_request:
types: ['review_requested', 'labeled']
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Only run the Chromatic workflow if a maintainer has labeled the PR as 'safe to test'.
# if: contains(github.event.pull_request.labels.*.name, 'safe to test')
# Job steps
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# enables use to use the cache in actions/setup-node
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
# 👇 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 }}
# Enables TurboSnap so we can save our quota: https://www.chromatic.com/docs/turbosnap
onlyChanged: true