Skip to content

Caching and UPDATED-sorting for the Github Data Sync Algorithm #469

Caching and UPDATED-sorting for the Github Data Sync Algorithm

Caching and UPDATED-sorting for the Github Data Sync Algorithm #469

Workflow file for this run

name: "Chromatic"
on:
pull_request:
paths:
- "webapp/**"
- "!webapp/src/app/core/modules/openapi/**"
push:
paths:
- "webapp/**"
- "!webapp/src/app/core/modules/openapi/**"
branches: [develop]
jobs:
chromatic:
name: Run Chromatic
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
# ⚠️ See your package manager's documentation for the correct command to install dependencies in a CI environment.
working-directory: ./webapp
run: npm ci
- name: Run Chromatic
id: chromatic
uses: chromaui/action@latest
with:
# ⚠️ Make sure to configure a `CHROMATIC_PROJECT_TOKEN` repository secret
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
autoAcceptChanges: "develop"
workingDir: webapp
skip: "dependabot/**"
- name: Publish Summary
run: echo -e "| Results | |\n| --- | --- |\n| Build Results | ${{ steps.chromatic.outputs.buildUrl }} |\n| Storybook Preview | ${{ steps.chromatic.outputs.storybookUrl }} |\n| Component Count | ${{steps.chromatic.outputs.componentCount}} |" >> $GITHUB_STEP_SUMMARY