Skip to content

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7 #254

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7

chore(deps): update dependency @typescript-eslint/eslint-plugin to v7 #254

Workflow file for this run

name: Storybook Tests
on: pull_request
jobs:
test:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: NPM install
run: npm install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: npm run build-storybook --quiet
- name: Serve Storybook and run tests
run: |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server storybook-static --port 6006 --silent" \
"npx wait-on tcp:127.0.0.1:6006 && npm run test-storybook"