-
Notifications
You must be signed in to change notification settings - Fork 86
116 lines (111 loc) · 3.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
push:
branches:
- develop
pull_request:
types: [opened, reopened, synchronize]
# List of jobs
jobs:
# JOB to run change detection
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
frontend: ${{ steps.filter.outputs.frontend }}
emailpreview: ${{ steps.filter.outputs.emailpreview }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
frontend:
- shared/**
- frontend/**
emailpreview:
- react-email-preview/**
chromatic-deployment-frontend:
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
# Operating System
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
# Job steps
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm i
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: frontend
autoAcceptChanges: develop
exitOnceUploaded: true
onlyChanged: true
storybookBaseDir: frontend
# Skip running Chromatic on dependabot PRs
skip: dependabot/**
# Only run when the frontend directory has changes
untraced: '!(frontend)/**'
chromatic-deployment-emailpreview:
needs: changes
if: ${{ needs.changes.outputs.emailpreview == 'true' }}
# Operating System
runs-on: ubuntu-latest
defaults:
run:
working-directory: react-email-preview
# Job steps
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install BE dependencies
working-directory: src
run: npm i
- name: Install dependencies
run: npm i
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_EMAIL_PROJECT_TOKEN }}
workingDir: react-email-preview
autoAcceptChanges: develop
exitOnceUploaded: true
onlyChanged: true
storybookBaseDir: react-email-preview
# Skip running Chromatic on dependabot PRs
skip: dependabot/**
# Only run when the react-email-preview directory has changes
untraced: '!(react-email-preview)/**'