Skip to content

[MS-26] Deploy 26 (#12) #2

[MS-26] Deploy 26 (#12)

[MS-26] Deploy 26 (#12) #2

Workflow file for this run

name: Deploy to Chromatic
on:
push:
paths:
- packages/flitter/**/*
- packages/story/**/*
- .github/workflows/flitter.yml
branches:
- dev
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16.17.1
- name: Install dependencies
run: |
npm ci
- name: Deploy to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/story
buildScriptName: build-storybook
autoAcceptChanges: true