-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (41 loc) · 1.21 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
# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
push:
branches:
- 'main'
pull_request:
types: [opened, reopened, synchronize]
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
if: ${{ !endsWith(github.actor , 'bot') && !endsWith(github.actor, '[bot]')}}
# Job steps
steps:
- uses: actions/checkout@v4
if: env.CHROMATIC_PROJECT_TOKEN != ''
with:
fetch-depth: 0 # Required so Chromatic can compare commits
- uses: ./.github/actions/setup
if: env.CHROMATIC_PROJECT_TOKEN != ''
- name: Load .env file
if: env.CHROMATIC_PROJECT_TOKEN != ''
uses: xom9ikk/dotenv@v2
with:
mode: test
- name: Publish to Chromatic
if: env.CHROMATIC_PROJECT_TOKEN != ''
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true
exitOnceUploaded: true
autoAcceptChanges: main
# Skip running Chromatic on dependabot PRs
skip: dependabot/**