Skip to content

Fixing sizing issue #2600

Fixing sizing issue

Fixing sizing issue #2600

Workflow file for this run

# Workflow name
name: "deployment"
# Event for the workflow
on:
push:
workflow_dispatch:
# List of jobs
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Linter
run: npm run lint
- name: unit tests
run: npm run test
- name: build
run: npm run build
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: npm install
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}