Update chromatic.yml #306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Chromatic" | |
on: | |
pull_request_target: | |
branches: | |
- release/** | |
push: | |
branches: | |
- release/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: yarn | |
- name: build examples | |
run: | | |
export NODE_OPTIONS=--openssl-legacy-provider && yarn run build-storybook | |
- name: upload storybook to chromatic | |
uses: chromaui/action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
storybookBuildDir: storybook-static |