From 09575cc87f341879709b6521e79bad9e10639dec Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Tue, 26 Jul 2022 16:52:47 -0700 Subject: [PATCH] Don't uninstall typescript before npm ci --- .github/workflows/ci.yml | 4 ---- .github/workflows/release-branch-artifact.yaml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ea0ee5a4eb82..e870951c587cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,10 +31,6 @@ jobs: with: node-version: ${{ matrix.node-version }} check-latest: true - - name: Remove existing TypeScript - run: | - npm uninstall typescript --no-save - npm uninstall tslint --no-save - run: npm ci # Re: https://github.com/actions/setup-node/pull/125 diff --git a/.github/workflows/release-branch-artifact.yaml b/.github/workflows/release-branch-artifact.yaml index 4e1578ecd460f..ed039a5accd27 100644 --- a/.github/workflows/release-branch-artifact.yaml +++ b/.github/workflows/release-branch-artifact.yaml @@ -12,10 +12,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v3 - - name: Remove existing TypeScript - run: | - npm uninstall typescript --no-save - npm uninstall tslint --no-save - name: npm install and test run: | npm ci