hypnagaga/.github/workflows/chromatic.yaml
2024-08-21 13:47:20 +01:00

25 lines
573 B
YAML

name: Chromatic
on:
pull_request:
branches:
- main
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: build:chromatic
exitOnceUploaded: true