chore(deps): bump semver from 5.7.1 to 5.7.2 #27
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: | |
pull_request: | |
branches: | |
- main | |
- "release/**" | |
- "feature/**" | |
jobs: | |
chromatic-deployment: | |
# Operating System | |
runs-on: ubuntu-latest | |
steps: | |
# π Version 2 of the action | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # π Required to retrieve git history | |
- name: Install dependencies | |
# π Install dependencies with the same package manager used in the project (replace it as needed) e.g. yarn, npm, pnpm | |
run: yarn | |
# π Adds Chromatic as a step in the workflow | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
# Options required to the GitHub Chromatic Action | |
with: | |
# π Chromatic projectToken, refer to the manage page to obtain it. | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |