chore(deps): update dependency typescript to v6.0.3-bridge.17.tsgo.7.0.2 #711
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: build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '24.x' | |
| cache: 'pnpm' | |
| cache-dependency-path: pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Install browser runtime | |
| run: pnpm --filter @tempad-dev/extension test:setup | |
| - name: Check agent plugins | |
| run: >- | |
| pnpm agent-plugin:build && | |
| test -z "$(git status --porcelain --untracked-files=all -- | |
| agent-plugin | |
| .plugin/marketplace.json | |
| .agents/plugins/marketplace.json | |
| .claude-plugin/marketplace.json)" | |
| - name: Check plugin installer compatibility | |
| run: pnpm agent-plugin:check-installer | |
| - name: Type check | |
| run: pnpm typecheck | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test:run | |
| - name: Format check | |
| run: pnpm format:check | |
| - name: Build project | |
| run: pnpm build | |
| - name: Check bridge compatibility | |
| run: pnpm mcp:check-bridge |