Skip to content

Cleanup CI and add chromatic #21

Cleanup CI and add chromatic

Cleanup CI and add chromatic #21

Workflow file for this run

name: 'Storybook Tests'
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: pnpm build:storybook --quiet
- name: Serve Storybook and run tests
run: |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server packages/nuka/storybook-static --port 6006" \
"npx wait-on tcp:127.0.0.1:6006 && pnpm test:storybook"