Skip to content

Merge branch 'arc-themes-release-version-2.0.3' into THEMES-1289-vert… #4449

Merge branch 'arc-themes-release-version-2.0.3' into THEMES-1289-vert…

Merge branch 'arc-themes-release-version-2.0.3' into THEMES-1289-vert… #4449

Workflow file for this run

# .github/workflows/chromatic.yml
name: "Chromatic"
# Event for the workflow
on:
push:
branches-ignore:
- "dependabot/**"
- "lokalise*"
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
registry-url: "https://npm.pkg.github.com"
- name: Cache Node Modules
id: cache
uses: actions/cache@v2
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
- name: Clean install (CI) dependencies if lockfile (above) changed
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
- name: Check failure status
uses: act10ns/slack@v1
with:
status: ${{ job.status }}
if: failure()