2022-05-27 22:52:42 +02:00
|
|
|
# .github/workflows/chromatic.yml
|
|
|
|
|
|
|
|
# Workflow name
|
|
|
|
name: 'Chromatic'
|
|
|
|
|
2022-06-29 23:34:37 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- web/**
|
2023-05-03 18:45:32 +02:00
|
|
|
pull_request_target:
|
2022-10-17 07:46:45 +02:00
|
|
|
paths:
|
|
|
|
- web/**
|
2022-05-27 22:52:42 +02:00
|
|
|
|
|
|
|
# List of jobs
|
|
|
|
jobs:
|
|
|
|
chromatic-deployment:
|
|
|
|
# Operating System
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-19 20:56:15 +01:00
|
|
|
if: github.repository == 'owncast/owncast'
|
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
2022-09-07 03:03:37 +02:00
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
steps:
|
2022-11-24 00:06:51 +01:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
2022-08-17 03:03:41 +02:00
|
|
|
- name: Check out code
|
2022-10-17 08:22:50 +02:00
|
|
|
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'renovate' }}
|
2022-09-07 03:03:37 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-08-17 03:03:41 +02:00
|
|
|
with:
|
2022-09-05 21:33:01 +02:00
|
|
|
# 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 }}
|
2022-08-17 03:03:41 +02:00
|
|
|
fetch-depth: 0
|
2022-09-05 21:33:01 +02:00
|
|
|
|
2022-09-07 03:03:37 +02:00
|
|
|
- name: Install dependencies
|
2022-10-17 08:22:50 +02:00
|
|
|
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'renovate' }}
|
2022-09-07 03:03:37 +02:00
|
|
|
run: npm install
|
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
- name: Publish to Chromatic
|
2022-10-17 08:22:50 +02:00
|
|
|
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'renovate' }}
|
2022-09-11 07:54:04 +02:00
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
uses: chromaui/action@v1
|
|
|
|
# Chromatic GitHub Action options
|
|
|
|
with:
|
|
|
|
workingDir: web
|
2022-10-17 08:01:18 +02:00
|
|
|
projectToken: f47410569b62
|
2022-09-09 01:33:15 +02:00
|
|
|
onlyChanged: true
|