From 1f3f611e9a71dac45b38368dd99e96e266d4000a Mon Sep 17 00:00:00 2001 From: Ashwin Bhatkal Date: Mon, 9 Mar 2026 19:26:36 +0530 Subject: [PATCH] chore: remove tsc2 check from jsci (#10527) --- .github/workflows/jsci.yaml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/jsci.yaml b/.github/workflows/jsci.yaml index b5a3863432..ccff4b9b4e 100644 --- a/.github/workflows/jsci.yaml +++ b/.github/workflows/jsci.yaml @@ -13,23 +13,6 @@ on: jobs: tsc: - if: | - github.event_name == 'merge_group' || - (github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork && github.event.pull_request.user.login != 'dependabot[bot]' && ! contains(github.event.pull_request.labels.*.name, 'safe-to-test')) || - (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'safe-to-test')) - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@v4 - - name: setup node - uses: actions/setup-node@v5 - with: - node-version: "22" - - name: install - run: cd frontend && yarn install - - name: tsc - run: cd frontend && yarn tsc - tsc2: if: | github.event_name == 'merge_group' || (github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork && github.event.pull_request.user.login != 'dependabot[bot]' && ! contains(github.event.pull_request.labels.*.name, 'safe-to-test')) ||