fix docker file causing install errors #16
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: UXP Client CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "client/**" | |
| pull_request: | |
| paths: | |
| - "client/**" | |
| jobs: | |
| ci: | |
| name: UXP Client | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: client | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| cache-dependency-path: client/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Generate API | |
| run: pnpm run generate-api | |
| - name: Check formatting | |
| run: pnpm run check-format | |
| - name: Lint | |
| run: pnpm run check-lint | |
| - name: Type check | |
| run: pnpm run check-types | |
| - name: Build | |
| run: pnpm run build | |
| - name: Test | |
| run: pnpm run test |