-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (37 loc) · 1.15 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
# .github/workflows/chromatic.yml
# name of our action
name: 'Chromatic'
# the event that will trigger the action
on: push
# what the action will do
jobs:
publish-chromatic:
# the operating system it will run on
runs-on: ubuntu-latest
# the list of steps that the action will go through
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v1
- name: Install Dependencies on Library
run: yarn install
working-directory: lib
- name: Install Dependencies
run: yarn install
- name: 🤞 Build Library 🧪
run: yarn build
working-directory: lib
- name: 🤞 Run Typecheck 🧪
run: yarn typecheck
working-directory: storybook
- name: 🤞 Run Lint 🧪
run: yarn lint
working-directory: storybook
- name: 🤞 Publish to Chromatic 🧪
uses: chromaui/action@v1
# options required to the GitHub chromatic action
with:
workingDir: storybook
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}