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/**
|
2022-09-05 21:33:01 +02:00
|
|
|
pull_request_target:
|
2022-09-03 20:35:46 +02:00
|
|
|
paths:
|
|
|
|
- web/**
|
2022-05-27 22:52:42 +02:00
|
|
|
|
|
|
|
# List of jobs
|
|
|
|
jobs:
|
|
|
|
chromatic-deployment:
|
|
|
|
# Operating System
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
2022-09-07 03:03:37 +02:00
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
steps:
|
2022-08-17 03:03:41 +02:00
|
|
|
- name: Check out code
|
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
|
|
|
|
run: npm install
|
|
|
|
|
2022-05-27 22:52:42 +02:00
|
|
|
- name: Publish to Chromatic
|
|
|
|
uses: chromaui/action@v1
|
|
|
|
# Chromatic GitHub Action options
|
|
|
|
with:
|
|
|
|
workingDir: web
|
|
|
|
autoAcceptChanges: webv2
|
|
|
|
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
|
|
|
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|