mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
34 lines
727 B
YAML
34 lines
727 B
YAML
name: "Chromatic"
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [develop, staging, main]
|
|
|
|
jobs:
|
|
chromatic:
|
|
timeout-minutes: 30
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4.1.7"
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: "pnpm/action-setup@v4.0.0"
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@v4.0.3"
|
|
with:
|
|
node-version: "22.x"
|
|
cache: "pnpm"
|
|
|
|
- name: "Install dependencies"
|
|
run: "pnpm install --frozen-lockfile"
|
|
|
|
- name: "Run Chromatic"
|
|
uses: "chromaui/action@latest"
|
|
with:
|
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
|
workingDir: "apps/storybook"
|