[TextInput] Certain props should be optional #488
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: 'Test' | |
on: pull_request | |
jobs: | |
Visual-Regression: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install compatible node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: yarn | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
onlyChanged: true # Enables https://www.chromatic.com/docs/turbosnap | |
exitZeroOnChanges: true # Visual changes SHOULD NOT block merging of PRs | |
exitOnceUploaded: true # Exit with status 0 (OK) once the build has been sent to Chromatic. | |
externals: | | |
- 'src/assets/**' |