ci: actually bump e18e/action-dependency-diff to v1.5.0 (#2454)
#3760
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| chromatic: | |
| name: 📚 Chromatic | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: ☑️ Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| - uses: voidzero-dev/setup-vp@8ecb39174989ce55af90f45cf55b02738599831d # v1 | |
| with: | |
| node-version: lts/* | |
| cache: true | |
| - name: 🟧 Install pnpm globally | |
| run: vp install -g pnpm | |
| - name: 🧪 Run Chromatic Visual and Accessibility Tests | |
| uses: chromaui/action@f191a0224b10e1a38b2091cefb7b7a2337009116 # v16.0.0 | |
| env: | |
| CHROMATIC_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }} | |
| CHROMATIC_SHA: ${{ github.event.pull_request.head.sha || github.sha }} | |
| CHROMATIC_SLUG: ${{ github.repository }} |