mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 05:59:42 -08:00
27 lines
588 B
YAML
27 lines
588 B
YAML
|
name: Chromatic
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
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 }}
|