Fix: Improve spacing below title and around data table #752
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: Test Storybook | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| storybook-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build Packages | |
| run: lerna run build | |
| - name: Install Playwright with dependencies | |
| run: npx playwright install chromium --with-deps | |
| - name: Run Storybook tests | |
| run: yarn test-storybook |