Skip to content

chore(deps): bump execa from 4.1.0 to 7.2.0 #4700

chore(deps): bump execa from 4.1.0 to 7.2.0

chore(deps): bump execa from 4.1.0 to 7.2.0 #4700

Workflow file for this run

name: Visual testing
on:
workflow_dispatch:
pull_request:
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened
types: [labeled, synchronize, opened, reopened, ready_for_review]
branches:
- master
push:
branches:
- master
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
permissions:
contents: read
deployments: read
pull-requests: write
statuses: write
jobs:
build:
runs-on: ubuntu-latest
environment: pull_request_unsafe
if: ( github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'need visual approval') )
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3
with:
fetch-depth: 0
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version: 18
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lock
- name: Publish PR to DS Chromatic
if: github.ref != 'refs/heads/master'
# https://github.com/chromaui/chromatic-cli/issues/739
uses: chromaui/action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/storybook
exitZeroOnChanges: true # Option to prevent the workflow from failing in PR
# Handle monorepos https://www.chromatic.com/docs/monorepos
forceRebuild: true
- name: Publish Master to DS Chromatic
if: github.ref == 'refs/heads/master'
# https://github.com/chromaui/chromatic-cli/issues/739
uses: chromaui/action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/storybook
autoAcceptChanges: true # Option to accept any change for this baseline refresh
forceRebuild: true