Skip to content

change github action runner version #597

change github action runner version

change github action runner version #597

name: "Storybook Tests"
on: push
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install dependencies
run: npm ci
- name: Run Vitest tests
run: npm test
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: npm run build-storybook:test
- name: Serve Storybook and run tests
run: npm run test-storybook-run