Skip to content

Feat: [OV-44110] Added checkbox completion style #576

Feat: [OV-44110] Added checkbox completion style

Feat: [OV-44110] Added checkbox completion style #576

Workflow file for this run

name: 'Chromatic'
on:
push:
paths:
- 'packages/**'
branches-ignore:
- main
- dependabot/*
- changeset-release/*
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: '18.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock')}}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
token: ${{ secrets.CHROMATIC_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}