fix: add card header detection for profile_first #1566
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: Chromatic PR | |
| on: | |
| push: | |
| branches-ignore: | |
| - renovate/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| - name: Install dependencies | |
| run: npm ci | |
| - run: npx nx run-many --all -t build-storybook -- --stats-json | |
| - uses: chromaui/action@v11 | |
| with: | |
| projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN_ELEMENTS_REACT }} | |
| exitOnceUploaded: true | |
| workingDir: packages/elements-react | |
| storybookBuildDir: storybook-static | |
| onlyChanged: true |