Skip to content

build(deps-dev): bump @storybook/addon-onboarding from 8.4.7 to 10.0.8 #1959

build(deps-dev): bump @storybook/addon-onboarding from 8.4.7 to 10.0.8

build(deps-dev): bump @storybook/addon-onboarding from 8.4.7 to 10.0.8 #1959

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: |
npm ci
npm run lint
npm run build
npm test
- 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:6006 && yarn test-storybook"
automerge:
name: Merge dependabot's PRs
needs: test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3