Files
owncast/.github/workflows/chromatic.yml
2022-09-08 16:33:15 -07:00

40 lines
931 B
YAML

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
on:
push:
paths:
- web/**
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./web
steps:
- name: Check out code
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
workingDir: web
autoAcceptChanges: webv2
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true