mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: 'Test: Visual Chromatic'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
ref:
|
|
description: GitHub ref to check out.
|
|
required: false
|
|
type: string
|
|
default: ''
|
|
|
|
jobs:
|
|
chromatic:
|
|
runs-on: blacksmith-4vcpu-ubuntu-2204
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ inputs.ref }}
|
|
|
|
- name: Setup Node.js
|
|
uses: ./.github/actions/setup-nodejs
|
|
with:
|
|
build-command: pnpm run build --filter=@n8n/utils --filter=@n8n/vitest-config --filter=@n8n/chat --filter=@n8n/design-system
|
|
|
|
- name: Publish to Chromatic
|
|
uses: chromaui/action@1cfa065cbdab28f6ca3afaeb3d761383076a35aa # v11
|
|
id: chromatic_tests
|
|
with:
|
|
workingDir: packages/frontend/@n8n/storybook
|
|
buildScriptName: build
|
|
autoAcceptChanges: 'master'
|
|
skip: 'release/**'
|
|
onlyChanged: true
|
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
|
exitZeroOnChanges: false
|