Create CODEOWNERS #321
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/chromatic.yml | |
# Workflow name | |
name: "Chromatic" | |
# Event for the workflow | |
on: push | |
# List of jobs | |
jobs: | |
chromatic: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
# ⚠️ See your package manager's documentation for the correct command to install dependencies in a CI environment. | |
run: npm ci | |
- name: Publish to Chromatic | |
uses: chromaui/action@latest | |
# Chromatic GitHub Action options | |
with: | |
# 👇 Chromatic projectToken, refer to the manage page to obtain it. | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |