Skip to content

improve layouts

improve layouts #191

Workflow file for this run

name: "Chromatic"
on:
push:
branches: [main]
pull_request:
types:
- opened
- reopened
- synchronize
- closed
concurrency: ci-${{ github.ref }}
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to retrieve git history
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.15.1
- name: Install dependencies
run: npm ci
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}