-
Notifications
You must be signed in to change notification settings - Fork 9
73 lines (63 loc) · 1.73 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
name: Chromatic
on:
push:
branches: ["main"]
paths:
- .github/workflows/chromatic.yml
- packages/**
- apps/**
merge_group:
branches: [main]
pull_request:
paths:
- .github/workflows/chromatic.yml
- packages/**
- apps/**
jobs:
chromatic:
name: Chromatic
# Only run if not dependabot.
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-22.04
env:
PNPM_VERSION: "9.12.3"
steps:
- uses: actions/checkout@v4
with:
# Chromatic requires full git history.
fetch-depth: 0
- name: "Copy .env"
working-directory: "./apps/web"
run: |
cp .env.example .env
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version-file: "./.nvmrc"
cache: pnpm
- name: "Install dependencies: workspace"
working-directory: ./
run: |
pnpm install
- name: "Setup: all workspaces"
working-directory: ./
run: |
pnpm codegen
pnpm intl-compile
- name: "Build: all workspaces"
working-directory: ./
run: |
pnpm build
- name: "Publish Storybook: all"
uses: chromaui/action@v11.15.0
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
# Auto-accept UI Tests on Chromatic platform.
# We use this setting because we're not relying on UI Tests at the
# moment, and want the GitHub status check in PRs (for "UI Tests") to
# display immediately as "passing".
autoAcceptChanges: true
workingDir: apps/web
onlyChanged: true