chore: rename domain kreuzberg.dev to xberg.io #20
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: ci-typescript | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "packages/typescript/**" | |
| - "spec/openapi.yaml" | |
| - "tasks/typescript.yml" | |
| - "package.json" | |
| - "pnpm-workspace.yaml" | |
| - "tsconfig.base.json" | |
| - ".github/workflows/ci-typescript.yml" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "packages/typescript/**" | |
| - "spec/openapi.yaml" | |
| - "tasks/typescript.yml" | |
| - "package.json" | |
| - "pnpm-workspace.yaml" | |
| - "tsconfig.base.json" | |
| concurrency: | |
| group: ci-typescript-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: test (node 24) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "24" | |
| cache: pnpm | |
| - name: Install task | |
| uses: arduino/setup-task@v2 | |
| with: | |
| version: 3.x | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install deps | |
| run: pnpm install | |
| - name: Generate client | |
| run: task typescript:generate | |
| - name: Typecheck + lint | |
| run: task typescript:lint | |
| - name: Test (with coverage) | |
| run: task typescript:test:cov | |
| - name: Build | |
| run: task typescript:build |