Skip to content

Adds a11y tests and fixes immediate issues presented #8

Adds a11y tests and fixes immediate issues presented

Adds a11y tests and fixes immediate issues presented #8

name: 'Storybook Tests'
on: push
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: yarn
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: yarn build-storybook --quiet
- name: Serve Storybook and run tests
run: |
npx --yes concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx --yes http-server storybook-static --port 6006 --silent" \
"npx --yes wait-on http://127.0.0.1:6006 && yarn test-storybook"