Skip to content

Rename prop type to capital, Remove buttons by default on demos, add … #18

Rename prop type to capital, Remove buttons by default on demos, add …

Rename prop type to capital, Remove buttons by default on demos, add … #18

Workflow file for this run

name: 'Storybook Tests'
on: push
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 7
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: pnpm install
- 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"