feat: upgrade to Storybook 10 RC.4 #63
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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| - run: corepack enable | |
| - name: Install | |
| run: npm install | |
| - name: Build | |
| run: npm run build-storybook | |
| test-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| - run: corepack enable | |
| - name: Install | |
| run: npm install | |
| - name: Playwright Install | |
| run: npx playwright install | |
| - name: Test Storybook | |
| run: npm run test-storybook |