2024-03-15 07:14:45 -07:00
|
|
|
name: Chromatic
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2024-05-08 05:33:53 -07:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- packages/design-system/**
|
|
|
|
- .github/workflows/chromatic.yml
|
2024-03-15 07:14:45 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
chromatic:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: corepack enable
|
|
|
|
- uses: actions/setup-node@v4.0.1
|
|
|
|
with:
|
|
|
|
node-version: 18.x
|
|
|
|
cache: 'pnpm'
|
|
|
|
- run: pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Publish to Chromatic
|
|
|
|
uses: chromaui/action@latest
|
|
|
|
with:
|
|
|
|
workingDir: packages/design-system
|
|
|
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|