-
Notifications
You must be signed in to change notification settings - Fork 46
67 lines (62 loc) · 1.71 KB
/
chromatic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
push:
paths:
- 'package.json'
- 'package-lock.json'
- '.github/workflows/chromatic.yml'
- '.storybook/**'
- '!packages/uui/**'
- 'packages/*/package.json'
- 'packages/*/lib/**'
- 'packages/*/assets/**'
branches-ignore:
- 'dependabot/**'
- 'release/*'
- 'Release/*'
- 'main'
- 'v*/main'
- 'v*/release'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
sha:
description: The commit hash referring to the commit to check.
required: true
ref:
description: The head branch associated with the pull request.
required: true
env:
NODE_OPTIONS: --max_old_space_size=16384
# List of jobs
jobs:
chromatic-deployment:
if: github.repository_owner == 'Umbraco'
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v4
with:
# pulls all commits (needed for chromatic to find baselines)
fetch-depth: '0'
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Publish to Chromatic
uses: chromaui/action@v11
continue-on-error: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: 'storybook:build'
exitOnceUploaded: true
onlyChanged: true,
untraced: '.storybook/images/**/*,storyhelpers/**/*'