-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (39 loc) · 1.48 KB
/
chromatic-main.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
# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic (Main)'
# Event for the workflow
on:
push:
branches:
- main
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
# 👇 Version 2 of the action
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- uses: pnpm/action-setup@v2
with:
version: 8.6.2
- name: Install dependencies
# 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm
run: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true pnpm i
# 👇 Build storybook with pnpm
- name: Build storybook
run: cd packages/components && pnpm run build.chromatic
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Options required to the GitHub Chromatic Action
with:
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
# Speedup the build by not waiting until everything is sent to Chromatic
exitOnceUploaded: true
# We don't need tests in the main branch, but want to accept everything
autoAcceptChanges: true
# We need to manually build storybook with pnpm
storybookBuildDir: packages/components/dist/storybook