chore(release): bump version to 2026.9.5.1 (#57) #86
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: Frontend CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: [frontend/**] | |
| pull_request: | |
| paths: [frontend/**] | |
| workflow_dispatch: | |
| workflow_call: | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6.0.10 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| cache-dependency-path: frontend/pnpm-lock.yaml | |
| - run: pnpm install --frozen-lockfile | |
| - name: Generate API client | |
| run: pnpm generate | |
| - name: TypeScript check | |
| run: pnpm tsc --noEmit | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Tests | |
| run: pnpm test | |
| - name: Build | |
| run: pnpm build |