chore: bump starter-kitty-validators to v1.2.11 #699
Workflow file for this run
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
# .github/workflows/chromatic.yml | |
# Workflow name | |
name: 'Chromatic' | |
# Event for the workflow | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
# List of jobs | |
jobs: | |
chromatic-deployment: | |
permissions: | |
contents: read | |
checks: write | |
# Operating System | |
runs-on: ubuntu-latest | |
env: | |
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
if: ${{ !endsWith(github.actor , 'bot') && !endsWith(github.actor, '[bot]')}} | |
# Job steps | |
steps: | |
- uses: actions/checkout@v4 | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
with: | |
fetch-depth: 0 # Required so Chromatic can compare commits | |
- uses: ./.github/actions/setup | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
- name: Load .env file | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
# xom9ikk/dotenv@v2, using commit hash to pin as tags may be updated in supply chain attack | |
uses: xom9ikk/dotenv@eff1dce037c4c0143cc4180a810511024c2560c0 | |
with: | |
mode: test | |
- name: Publish to Chromatic | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
# chromaui/action@latest, using commit hash to pin to silence codeQL | |
uses: chromaui/action@012a0241a4df3f0f831c99f02e2085c9641a25ba | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
onlyChanged: true | |
exitOnceUploaded: true | |
autoAcceptChanges: main | |
# Skip running Chromatic on dependabot PRs | |
skip: dependabot/** |