We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7431bd5 commit bc8adb8Copy full SHA for bc8adb8
.github/workflows/chromatic.yml
@@ -0,0 +1,21 @@
1
+# Workflow name
2
+name: "Chromatic Deployment"
3
+
4
+# Event for the workflow
5
+on: push
6
7
+# List of jobs
8
+jobs:
9
+ test:
10
+ # Operating System
11
+ runs-on: ubuntu-latest
12
+ # Job steps
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - run: yarn
16
+ #👇 Adds Chromatic as a step in the workflow
17
+ - uses: chromaui/action@v1
18
+ # Options required for Chromatic's GitHub Action
19
+ with:
20
+ #👇 Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/ko/deploy/ to obtain it
21
+ projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
0 commit comments