Bump storybook from 10.0.7 to 10.1.10 #139
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Storybook and Component Tests | |
| permissions: | |
| contents: read | |
| on: push | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup project | |
| uses: ./.github/actions/setup | |
| - name: Install playwright | |
| run: npx playwright install | |
| - name: Run Storybook tests | |
| run: npm run test:storybook:ci | |
| - name: Run vitest tests | |
| run: npm run test:ci |