chore(deps-dev): bump vite from 5.4.10 to 5.4.11 (#3401) #270
This file contains 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: Visual regression testing | |
on: | |
push: | |
branches: | |
- main | |
- "!changeset-release/**" | |
- "!dependabot/**" | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
skip: | |
description: "Skip running VRT" | |
required: false | |
type: boolean | |
default: false | |
outputs: | |
storybook-url: | |
description: "URL of the published Storybook" | |
value: ${{ jobs.vrt.outputs.storybook-url }} | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
vrt: | |
if: ${{!startsWith(github.ref, 'refs/heads/dependabot/') && !startsWith(github.ref, 'refs/heads/changeset-release/') }} | |
name: Chromatic | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
outputs: | |
storybook-url: ${{ steps.chromatic.outputs.storybookUrl != 'undefined' && steps.chromatic.outputs.storybookUrl || '' }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node LTS version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
- name: Enable Corepack | |
run: corepack enable | |
## --- YARN CACHE --- ## | |
- name: Check for cached dependencies | |
continue-on-error: true | |
id: cache-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.cache/yarn | |
node_modules | |
key: ubuntu-latest-node20-${{ hashFiles('yarn.lock') }} | |
## --- INSTALL --- ## | |
- name: Install dependencies | |
shell: bash | |
run: yarn install --immutable | |
- name: Publish to Chromatic | |
id: chromatic | |
uses: chromaui/action@latest | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
buildScriptName: ci:storybook | |
storybookConfigDir: .storybook | |
storybookBaseDir: .storybook | |
exitOnceUploaded: true | |
onlyChanged: true | |
traceChanged: true | |
untraced: ".github/actions/*/package.json generator/package.json" | |
diagnostics: true | |
autoAcceptChanges: "main" | |
# Lets VRT pass without running so as not to waste snapshots | |
skip: ${{ inputs.skip }} |