Skip to content

add chromatic command #396

add chromatic command

add chromatic command #396

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
jobs:
lint-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Test
run: npm run test
- name: Chromatic
run: npm run chromatic