Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 6.19.1 to 7.8.0 #1295

chore(deps-dev): bump @typescript-eslint/parser from 6.19.1 to 7.8.0

chore(deps-dev): bump @typescript-eslint/parser from 6.19.1 to 7.8.0 #1295

Workflow file for this run

name: Storybook Tests
on: push
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- name: Install Dependencies 🔧
run: npm ci
- name: Install Playwright 🎭
run: npx playwright install --with-deps
- name: Run Storybook Tests 📚
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 http://127.0.0.1:6006 && npm run test-storybook"