forked from sifiorg/sifi
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (49 loc) · 1.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
name: Chromatic
on:
push:
branches-ignore:
- /release-/
- beta
paths:
- '.github/workflows/chromatic.yml'
- 'packages/frontend/**'
- '@types'
- 'configs/**'
jobs:
test:
# Don't run on forks
if: github.repository == 'sifiorg/sifi'
runs-on: ubuntu-latest
container: node:18.12.1-bullseye
steps:
- name: Install system dependencies
run: apt update && apt-get install -y jq
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build SDK
run: pnpm -C packages/sdk build
- name: Build Storybook
run: pnpm -C packages/frontend build-storybook
- name: Upload Storybook to Chromatic
run: pnpm -C packages/frontend chromatic