Fix missing options object in runAll and ensure exitCode and http cli… #1482
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 | |
on: push | |
jobs: | |
chromatic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: install | |
run: yarn install --frozen-lockfile | |
- uses: chromaui/action-next@v1 | |
with: | |
exitOnceUploaded: true | |
onlyChanged: true | |
traceChanged: true | |
diagnostics: true | |
env: | |
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: chromatic-build-artifacts-${{ github.run_id }} | |
path: | | |
chromatic-diagnostics.json | |
**/build-storybook.log |