Skip to content

[tech] Bump mantine 7.16.3 #750

[tech] Bump mantine 7.16.3

[tech] Bump mantine 7.16.3 #750

Workflow file for this run

name: 'Storybook Tests'
on:
pull_request:
branches: [main, stable]
workflow_dispatch:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '22'
cache: 'yarn'
- 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 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"