Skip to content

Merge branch 'master' into XS-30 #64

Merge branch 'master' into XS-30

Merge branch 'master' into XS-30 #64

Workflow file for this run

name: "Chromatic"
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: Install dependencies
run: npm ci
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
buildScriptName: build:storybook
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}