Skip to content

upgrade to dndkit v6 #22

upgrade to dndkit v6

upgrade to dndkit v6 #22

Workflow file for this run

name: Chromatic
# ref: https://www.chromatic.com/docs/github-actions
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
publish-chromatic:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
# 👇 Version 2 of the action
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '12.x'
- name: Install dependencies
run: npm install
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Options required to the GitHub Chromatic Action
with:
token: ${{ secrets.GITHUB_TOKEN }}
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}