This repository was archived by the owner on Aug 1, 2025. It is now read-only.
remove dotcom related code from tsx files #26634
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: scip-typescript | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| paths: | |
| - "**.ts" | |
| - "**.tsx" | |
| - "**.js" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| scip-typescript: | |
| if: github.repository == 'sourcegraph/cody' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # SECURITY: pin third-party action hashes | |
| id: pnpm-install | |
| with: | |
| version: 8.6.7 | |
| run_install: false | |
| - name: Get pnpm store directory | |
| id: pnpm-cache | |
| shell: bash | |
| run: | | |
| echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v3 | |
| name: Setup pnpm cache | |
| with: | |
| path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm dlx @sourcegraph/scip-typescript index --pnpm-workspaces --no-global-caches | |
| - name: Upload SCIP to Cloud | |
| run: pnpm dlx @sourcegraph/src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress | |
| env: | |
| SRC_ENDPOINT: https://sourcegraph.com/ | |
| SRC_ACCESS_TOKEN: ${{ secrets.SRC_ACCESS_TOKEN_DOTCOM }} | |
| - name: Upload SCIP to S2 | |
| run: pnpm dlx @sourcegraph/src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress | |
| env: | |
| SRC_ENDPOINT: https://sourcegraph.sourcegraph.com/ | |
| SRC_ACCESS_TOKEN: ${{ secrets.SRC_ACCESS_TOKEN_S2 }} | |
| - name: Upload lsif to Demo | |
| run: pnpm dlx @sourcegraph/src code-intel upload -github-token='${{ secrets.GITHUB_TOKEN }}' -no-progress || true | |
| env: | |
| SRC_ENDPOINT: https://demo.sourcegraph.com/ | |
| SRC_ACCESS_TOKEN: ${{ secrets.SRC_ACCESS_TOKEN_DEMO }} |