6.20.0-canary.1 #1190
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 | |
jobs: | |
chromatic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: yarn install | |
- run: yarn set version 1.x.x | |
- 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 }} |