chore(release): v3.0.0 #24
Workflow file for this run
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: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Verify example versions are aligned | |
| run: npm run sync:versions:check | |
| - name: Audit dependencies | |
| run: npm audit --audit-level=high | |
| - name: Lint package | |
| run: npm run lint | |
| - name: Type-check package | |
| run: npm run typecheck | |
| - name: Test package | |
| run: npm test | |
| - name: Build package | |
| run: npm run build | |
| - name: Lint examples | |
| run: npm run lint:examples | |
| - name: Type-check examples | |
| run: npm run typecheck:examples | |
| - name: Test example applications | |
| run: npm run test:examples | |
| - name: Build example applications | |
| run: npm run build:examples | |
| - name: Build all Storybooks | |
| run: npm run build:storybooks | |
| - name: Install Chromium | |
| run: npx playwright install --with-deps chromium | |
| - name: Test Storybook in Chromium | |
| run: npm run test:storybook | |
| - name: Smoke-test every static Storybook in Chromium | |
| run: npm run test:storybook-static |