feat(issue): add bulk multi-select actions for work items #169
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: UI CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'apps/web/**' | |
| - '.github/workflows/ui-ci.yml' | |
| defaults: | |
| run: | |
| working-directory: apps/web | |
| jobs: | |
| lint-and-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| cache-dependency-path: | | |
| package-lock.json | |
| apps/web/package-lock.json | |
| - name: Install root dependencies (Husky) | |
| working-directory: . | |
| run: npm ci | |
| - name: Verify Husky setup | |
| working-directory: . | |
| run: | | |
| npm run prepare | |
| npx husky --version | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Check formatting | |
| run: npm run format:check | |
| - name: Build | |
| run: npm run build |