Skip to content

dgd03146's storybook deploy #1

dgd03146's storybook deploy

dgd03146's storybook deploy #1

Workflow file for this run

name: Storybook Deployment
run-name: ${{ github.actor }}'s storybook deploy
on:
pull_request:
branches:
- main
paths: apps/workshop/**
push:
branches:
- main
paths:
- 'apps/workshop/**'
jobs:
storybook:
runs-on: ubuntu-20.04
permissions:
pull-requests: write
actions: write
outputs:
status: ${{ job.status }}
steps:
- name: checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-storybook
- name: depedency install
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: publish to chromatic
id: chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: comment PR
if: github.event_name == 'pull_request'
uses: thollander/actions-comment-pull-request@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: '🚀storybook: ${{ steps.chromatic.outputs.storybookUrl }}'