Merge pull request #822 from chromaui/ghengeveld/ap-3696-allow-user-t… #471
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 Node 12 | |
on: push | |
jobs: | |
self-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: yarn | |
- run: yarn build | |
- uses: ./ | |
with: | |
buildScriptName: build-test-storybook | |
exitZeroOnChanges: true | |
forceRebuild: true | |
env: | |
LOG_LEVEL: debug | |
DEBUG: chromatic-cli | |
CHROMATIC_PROJECT_TOKEN: ${{ secrets.SMOKE_TESTS_CHROMATIC_PROJECT_TOKEN }} |