fix: clear input value on clearFiles from imperative handle #439
Workflow file for this run
This file contains hidden or 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: Happo CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| happo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| fetch-depth: 100 | |
| - name: Fetch main branch | |
| if: github.ref != 'refs/heads/main' | |
| run: git fetch origin main:main | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.node-version' | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn --immutable | |
| - name: Build Storybook | |
| run: yarn build-storybook | |
| - name: Happo | |
| run: yarn happo-ci | |
| env: | |
| HAPPO_API_KEY: ${{ secrets.HAPPO_API_KEY }} | |
| HAPPO_API_SECRET: ${{ secrets.HAPPO_API_SECRET }} |