Skip to content

Update all non-major dependencies #1187

Update all non-major dependencies

Update all non-major dependencies #1187

Workflow file for this run

---
name: Chromatic
on: pull_request
jobs:
chromatic-deployment:
name: Chromatic Deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
cache: yarn
- name: Cache node modules
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install
run: yarn install
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}