diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 92aa25140..7855141d8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -134,49 +134,6 @@ jobs: if: failure() uses: andymckay/cancel-action@0.2 - typecheck: - name: Check TypeScript types - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Get changed files - id: changed-files - uses: tj-actions/changed-files@v23.2 - with: - files: | - src/** - - - name: Install Node.js v16 - if: steps.changed-files.outputs.any_changed == 'true' - uses: actions/setup-node@v3 - with: - node-version: "16" - - - name: Fetch dependencies from cache - if: steps.changed-files.outputs.any_changed == 'true' - id: cache-node-modules - uses: actions/cache@v3 - with: - path: "**/node_modules" - key: yarn-build-${{ hashFiles('**yarn.lock') }} - restore-keys: | - yarn-build- - - - name: Install dependencies - if: steps.changed-files.outputs.any_changed == 'true' && steps.cache-node-modules.outputs.cache-hit != 'true' - run: SKIP_SUBMODULE_DEPS=1 yarn --frozen-lockfile - - - name: Run tsc on TypeScript files - if: steps.changed-files.outputs.any_changed == 'true' - run: yarn typecheck - - - name: Fail workflow - if: failure() - uses: andymckay/cancel-action@0.2 - build: name: Build runs-on: ubuntu-latest diff --git a/package.json b/package.json index 145b49a1b..f23609d5c 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,6 @@ "lint:scripts": "./ci/dev/lint-scripts.sh", "lint:ts": "eslint --max-warnings=0 --fix $(git ls-files '*.ts' '*.js' | grep -v 'lib/vscode')", "test": "echo 'Run yarn test:unit or yarn test:e2e' && exit 1", - "typecheck": "tsc -p tsconfig.json --noEmit --skipLibCheck", "ci": "./ci/dev/ci.sh", "watch": "VSCODE_DEV=1 VSCODE_IPC_HOOK_CLI= NODE_OPTIONS='--max_old_space_size=32384 --trace-warnings' ts-node ./ci/dev/watch.ts", "icons": "./ci/dev/gen_icons.sh"