Skip to content

chore(deps-dev): bump jscodeshift from 0.15.0 to 0.15.2 #9

chore(deps-dev): bump jscodeshift from 0.15.0 to 0.15.2

chore(deps-dev): bump jscodeshift from 0.15.0 to 0.15.2 #9

Workflow file for this run

name: 'Storybook Tests'
on:
pull_request:
push:
branches:
- main
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm i
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: npm run build:storybook:visual-testing --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:6006 && npm run test:storybook"