Pass CI=1 environment variable to build-storybook and prefer local bi… #2090
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: Smoke test via yarn classic | |
on: push | |
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: rm -rf subdir # remove conflicting subproject | |
- run: yarn set version 1.x.x | |
- run: yarn install | |
- name: run chromatic | |
run: npx -p . chromatic --build-script-name build-test-storybook --exit-zero-on-changes --force-rebuild | |
env: | |
LOG_LEVEL: debug | |
DEBUG: chromatic-cli | |
CHROMATIC_PROJECT_TOKEN: ${{ secrets.SMOKE_TESTS_CHROMATIC_PROJECT_TOKEN }} |