This repository was archived by the owner on Mar 7, 2026. It is now read-only.
feat: comprehensive UI kit upgrade (Tailwind v4, Shadcn theming, DataTable, new components) #15
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: Design Tokens Check | |
| on: | |
| push: | |
| branches: [main, develop] | |
| paths: | |
| - 'packages/ui-kit/src/theme/**' | |
| pull_request: | |
| branches: [main, develop] | |
| paths: | |
| - 'packages/ui-kit/src/theme/**' | |
| jobs: | |
| tokens-check: | |
| name: Check Design Tokens Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 10 | |
| run_install: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Run tokens-check script | |
| working-directory: packages/ui-kit | |
| run: pnpm tokens-check |