-
Notifications
You must be signed in to change notification settings - Fork 1
88 lines (76 loc) · 2.56 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
# Workflow name
name: "Chromatic Deployment - Design System"
env:
CHROMATIC_APP_ID: 62d7d1f2efc8a1e364b5e5e8
# Event for the workflow
on:
push:
branches:
- "main"
paths:
- ".github/workflows/chromatic.yml"
- "packages/design-system/**"
- "packages/design-system-icons/**"
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/chromatic.yml"
- "packages/design-system/**"
- "packages/design-system-icons/**"
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to retrieve git history
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- uses: nrwl/nx-set-shas@v3
- name: Nx Cache
uses: actions/cache@v3
with:
path: node_modules/.cache/nx
key: ${{ github.repository }}-nx-${{ env.NX_BASE }}
restore-keys: |
${{ github.repository }}-nx-
- name: Get branch name
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
id: branch-name
run: |
echo "value=$(echo $BRANCH_NAME)" >> $GITHUB_OUTPUT
- name: Get Chromatic branch name
env:
BRANCH_NAME: ${{ steps.branch-name.outputs.value }}
id: chromatic-branch-name
run: |
echo "value=$(echo $BRANCH_NAME | tr '[:upper:]' '[:lower:]' | tr / -)" >> $GITHUB_OUTPUT
- name: Install dependencies
run: npm ci
- name: Build design-system package and its dependencies
run: npx nx build @lunit/design-system
- name: Publish to Chromatic
env:
BRANCH_NAME: ${{ steps.branch-name.outputs.value }}
CHROMATIC_BRANCH_NAME: ${{ steps.chromatic-branch-name.outputs.value }}
id: chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: build-storybook:design-system
- name: Comment preview link
env:
CHROMATIC_BRANCH_NAME: ${{ steps.chromatic-branch-name.outputs.value }}
if: ${{ github.event_name == 'pull_request' }}
uses: NejcZdovc/[email protected]
with:
message: "Design System Storybook: https://${{ env.CHROMATIC_BRANCH_NAME }}--${{ env.CHROMATIC_APP_ID }}.chromatic.com"
identifier: "PREVIEW_LINK_COMMENT"
github_token: ${{ secrets.GITHUB_TOKEN }}