-
Notifications
You must be signed in to change notification settings - Fork 30
48 lines (43 loc) · 1.79 KB
/
ar-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
name: AR Chromatic 👓
on:
push:
branches: [main]
pull_request:
types: [opened, labeled, synchronize]
jobs:
chromatic:
name: Chromatic
runs-on: ubuntu-latest
steps:
- name: Checkout - On Pull Request
uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request'}}
with:
fetch-depth: 0
# By default the pull_request event will run on a ephermeral merge commit which simulates a merge between the pull request
# and the target branch. This can cause issues with Chromatic https://www.chromatic.com/docs/turbosnap#github-pullrequest-triggers
# Hopefully by checking out the HEAD commit of a PR instead of the merge commit we can avoid some of those issues.
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout - On Push Event
uses: actions/checkout@v4
if: ${{ github.event_name == 'push'}}
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
# Root yarn installs all workspaces (root, dotcom)
- run: yarn install --frozen-lockfile
- name: Chromatic - Apps Rendering
uses: chromaui/action@v1
# Run Chromatic only if `run_chromatic` label has been applied or we're
# pushing to `main`.
if: (contains(github.event.pull_request.labels.*.name, 'run_chromatic') || github.ref == 'refs/heads/main')
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN__APPS_RENDERING }}
token: ${{ secrets.GITHUB_TOKEN }}
untraced: '**/(package*.json|yarn.lock|preview.js)'
exitOnceUploaded: true
onlyChanged: '!(main)' # only turbosnap on non-main branches
workingDir: apps-rendering