Add steps for how to run builds against local CLI #792
Workflow file for this run
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 Main and Active PRs only | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [assigned, ready_for_review, review_requested] | |
permissions: | |
contents: read | |
jobs: | |
chromatic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- run: corepack enable | |
- name: install | |
run: yarn install --immutable | |
- uses: chromaui/action@latest | |
with: | |
# 👇 Chromatic projectToken, refer to the manage page to obtain it. | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
exitOnceUploaded: true | |
onlyChanged: true | |
traceChanged: true | |
diagnostics: true | |
skip: ${{ github.event.pull_request.draft == true }} | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: chromatic-build-artifacts-${{ github.run_id }} | |
path: | | |
chromatic-diagnostics.json | |
**/build-storybook.log |