Skip to content

Feat layout

Feat layout #11

Workflow file for this run

# .github/workflows/chromatic.yml
name: 'Chromatic Deployment'
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Publish to Chromatic
run: npx chromatic --project-token=${{ secrets.CHROMATIC_PROJECT_TOKEN }}