Skip to content

remove owner qateam #844

remove owner qateam

remove owner qateam #844

Workflow file for this run

# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
pull_request:
branches:
- main
push:
branches:
- 'main'
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: self-hosted
defaults:
run:
working-directory: frontend
# Job steps
steps:
- uses: actions/checkout@v1
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
working-directory: styleguide
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: styleguide