build(deps): bump lodash from 4.17.21 to 4.17.23 #465
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: 'Chromatic Deployment' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - 'styles/**' | |
| pull_request: | |
| types: [labeled] | |
| jobs: | |
| chromatic-deployment: | |
| # Run on main repo pushes or when PR has "deploy-storybook" label | |
| if: github.repository == 'rad-ui/ui' && (github.event_name == 'push' || github.event.label.name == 'deploy-storybook') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Required for Chromatic to retrieve git history | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: npm ci # Use 'yarn install --frozen-lockfile' if you use Yarn | |
| - name: Publish to Chromatic | |
| uses: chromaui/action@v1 | |
| with: | |
| projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
| # Optional: Add any additional Chromatic CLI flags here | |
| # For example: --exit-zero-on-changes | |