Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 in /documentation #415

Bump word-wrap from 1.2.3 to 1.2.4 in /documentation

Bump word-wrap from 1.2.3 to 1.2.4 in /documentation #415

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic Publish'
# Event for the workflow
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
# Replace pull_request with pull_request_target if you
# plan to use this action with forks, see the Limitations section
pull_request:
# List of jobs
jobs:
publish-storybook:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate env file
run: cp .env.docker .env
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Node.js dependencies Management UI
run: npm ci
- name: Install Node.js dependencies Documentation
run: npm ci
working-directory: documentation
- uses: chromaui/action@v1
# Options required for Chromatic's GitHub Action
with:
workingDir: documentation
#👇 Chromatic projectToken,
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}