Skip to content

Merge pull request #621 from MuckRock/public-project-discovery #1266

Merge pull request #621 from MuckRock/public-project-discovery

Merge pull request #621 from MuckRock/public-project-discovery #1266

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: "Chromatic"
# Event for the workflow
on: push
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to retrieve git history
- name: Use Node v18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true
externals: |
- 'public/**'