Skip to content

chore: CI visual regression workflow #2

chore: CI visual regression workflow

chore: CI visual regression workflow #2

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './client' # Here the path to the folder where package-lock.json is located.
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: Install dependencies
run: npm ci
working-directory: ./client
- name: Build Storybook
run: npm run story:build
working-directory: ./client
- name: Lost Pixel
uses: lost-pixel/lost-pixel@v3.8.0