Skip to content

Remove unused SVGR dependencies and update configuration #123

Remove unused SVGR dependencies and update configuration

Remove unused SVGR dependencies and update configuration #123

Workflow file for this run

name: Test checks - Storybook Interactions and Accessibility
on: push
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: πŸš€ Prepare Repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: 🧩 Install Dependencies
run: npm ci
- name: 🎭 Install Playwright
run: npx playwright install --with-deps
- name: πŸ—οΈ Build Storybook
run: npm run story:build --quiet
- name: πŸ’« Serve Storybook
run: npx http-server storybook-static --port 6006 --silent &
- name: πŸ”Ž Ensure Storybook Server is ready
run: npx wait-on http://127.0.0.1:6006
- name: πŸ“š Run Interactions and Accessibility
run: npm run test