This repository was archived by the owner on Mar 7, 2026. It is now read-only.
fix: update order of steps in tokens-check workflow #4
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: 8 | |
| 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 |